summaryrefslogtreecommitdiff
path: root/src/plugins/android.codeutils/templates/activity_samples/pref_activity/samplepreferences.xml
blob: aade5f021b2288b647997c1621ebd44b1f6724a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
	<PreferenceCategory android:title="@string/sample_pref_categ_1">
		<CheckBoxPreference android:key="checkbox"
							android:title="@string/sample_pref_ckb" 
							android:summary="@string/sample_pref_check_it" />		
	</PreferenceCategory>
	<PreferenceCategory android:title="@string/sample_pref_categ_2">
		<PreferenceScreen android:key="detail" 
						  android:title="@string/sample_pref_other_screen"
						  android:summary="@string/sample_pref_add_prefs">
			<CheckBoxPreference android:key="checkbox2"				
							    android:title="@string/sample_pref_other_ckb" />
		</PreferenceScreen>
	</PreferenceCategory>
	<PreferenceCategory android:title="@string/sample_pref_categ_3">
		<EditTextPreference android:key="text"
							android:title="@string/sample_pref_txt_dialog" 							
							android:dialogTitle="@string/sample_pref_enter_txt" />
							android:summary="Preference Summary"/>
		<ListPreference android:key="list"
						android:title="@string/sample_pref_sel_dialog" 
						android:summary="@string/sample_pref_click_pop_up"
						android:entries="@array/numbernames"
						android:entryValues="@array/numbers"
						android:dialogTitle="@string/sample_pref_choose_number" />
	</PreferenceCategory>
</PreferenceScreen>