source: other-projects/tipple-android/trunk/res/xml/preferences.xml@ 23977

Last change on this file since 23977 was 23977, checked in by davidb, 13 years ago

Initial set of files for the Tipple project, to be run on an Android device

File size: 1.4 KB
RevLine 
[23977]1<?xml version="1.0" encoding="utf-8"?>
2<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
3 android:title="@string/menu_preferences">
4 <PreferenceCategory android:title="@string/preferences_map">
5 <CheckBoxPreference android:title="@string/preferences_show_scale_bar"
6 android:summary="@string/preferences_show_scale_bar_desc"
7 android:key="showScaleBar" />
8 <CheckBoxPreference android:title="@string/preferences_centre_on_loc"
9 android:summary="@string/preferences_centre_on_loc_desc"
10 android:key="centreOnGPSLoc" />
11 <CheckBoxPreference android:title="@string/preferences_show_sights"
12 android:summary="@string/preferences_show_sights_desc"
13 android:key="showSights" />
14 <CheckBoxPreference android:title="@string/preferences_show_user_trail"
15 android:summary="@string/preferences_show_user_trail_desc"
16 android:key="showUserTrail" />
17
18 </PreferenceCategory>
19
20 <PreferenceCategory android:title="@string/preferences_mode">
21 <ListPreference android:title="@string/preferences_text_audio_mode"
22 android:summary="@string/preferences_text_audio_mode_desc"
23 android:entries="@array/preferences_text_audio_mode_entries"
24 android:entryValues="@array/preferences_text_audio_mode_entry_values"
25 android:key="textAudioMode" android:defaultValue="@string/preferences_text_audio_mode_default" />
26 </PreferenceCategory>
27
28</PreferenceScreen>
Note: See TracBrowser for help on using the repository browser.