source: other-projects/tipple-android/tipple-ar/tipple-standalone-hpg/res/xml/preferences.xml@ 26528

Last change on this file since 26528 was 26528, checked in by davidb, 11 years ago

Code developed by the Tipple-AR Smoke and Mirrors team, based on the main tipple trunk

File size: 1.4 KB
Line 
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.