profile_preferences.xml 908 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  3. <PreferenceCategory android:title="General"
  4. android:key="pref_profile_general_settings">
  5. <EditTextPreference android:key="pref_profile_general_name"
  6. android:title="Name"
  7. android:summary="Change the name of this profile"
  8. android:defaultValue=""/>
  9. <EditTextPreference android:key="pref_profile_general_description"
  10. android:title="Description"
  11. android:summary="Change the description of this profile here"
  12. android:defaultValue="" />
  13. <Preference android:key="pref_profile_general_image"
  14. android:title="Icon"
  15. android:summary="Choose an icon for this profile" />
  16. </PreferenceCategory>
  17. </PreferenceScreen>