profile_preferences.xml 916 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  3. <PreferenceCategory android:title="@string/general"
  4. android:key="pref_profile_general_settings">
  5. <EditTextPreference android:key="pref_profile_general_name"
  6. android:title="Name"
  7. android:summary="@string/change_name_of_profile"
  8. android:defaultValue=""/>
  9. <EditTextPreference android:key="pref_profile_general_description"
  10. android:title="@string/profile_description"
  11. android:summary="@string/change_desc_of_profile"
  12. android:defaultValue="" />
  13. <Preference android:key="pref_profile_general_image"
  14. android:title="Icon"
  15. android:summary="@string/change_icon_of_profile" />
  16. </PreferenceCategory>
  17. </PreferenceScreen>