Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <PreferenceScreen
      3   xmlns:android="http://schemas.android.com/apk/res/android">
      4 
      5 	<PreferenceCategory
      6 		android:key="category"
      7 		android:title="Category Test">
      8 		
      9 		<Preference
     10 			android:key="inside_category"
     11 			android:title="Inside Category Test"
     12 			android:summary=""/>
     13 			
     14 	</PreferenceCategory>
     15 
     16 	<CheckBoxPreference
     17 		android:key="checkbox"
     18 		android:title="Checkbox Test"
     19 		android:summary=""
     20 		android:defaultValue="true"
     21 		/>
     22 
     23 	<EditTextPreference
     24 		android:key="edit_text"
     25 		android:title="EditText Test"
     26 		android:summary=""
     27 		/>
     28 
     29 	<ListPreference
     30 		android:key="list"
     31 		android:title="List Test"
     32 		android:summary=""
     33 		/>
     34 
     35 	<Preference
     36 		android:key="preference"
     37 		android:title="Preference Title"
     38 		android:summary=""/>
     39 
     40 	<RingtonePreference
     41 		android:key="ringtone"
     42 		android:title="Ringtone Test"
     43 		android:summary=""
     44 		/>
     45 
     46 </PreferenceScreen>