/[zanavi_public1]/navit/navit/android/res/xml/preferences.xml
ZANavi

Contents of /navit/navit/android/res/xml/preferences.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (show annotations) (download) (as text)
Mon Apr 9 21:27:36 2012 UTC (11 years, 11 months ago) by zoff99
File MIME type: text/xml
File size: 8363 byte(s)
lots of new stuff, tranlsations, bug fixes ...
1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
3
4 <PreferenceCategory android:title="Position" >
5 <CheckBoxPreference
6 android:defaultValue="false"
7 android:key="use_fast_provider"
8 android:summary="Use GSM/3g/Wireless networks for getting position"
9 android:title="GSM/3g/Wireless" />
10 <CheckBoxPreference
11 android:defaultValue="false"
12 android:key="use_agps"
13 android:summary="Use aGPS (assisted GPS) to get a faster fix (uses Internet)"
14 android:title="aGPS" />
15 <CheckBoxPreference
16 android:defaultValue="true"
17 android:key="follow_gps"
18 android:summary="Center on GPS. activate this for Compass heading to work"
19 android:title="Follow" />
20 <CheckBoxPreference
21 android:defaultValue="true"
22 android:key="use_lock_on_roads"
23 android:summary="lock Vehicle on nearest Road. turn off if you are walking or driving offroad"
24 android:title="lock on Roads" />
25 <CheckBoxPreference
26 android:defaultValue="false"
27 android:key="show_vehicle_in_center"
28 android:summary="show vehicle in screen center, instead of the lower half of the screen"
29 android:title="Vehicle in center" />
30 <CheckBoxPreference
31 android:defaultValue="false"
32 android:key="show_sat_status"
33 android:summary="show Satellite status"
34 android:title="Sat Status" />
35 </PreferenceCategory>
36 <PreferenceCategory android:title="Direction" >
37 <CheckBoxPreference
38 android:defaultValue="false"
39 android:key="use_compass_heading_base"
40 android:summary="Get direction from compass. needs lots of CPU! The worldview will show incorrect position!"
41 android:title="Compass" >
42 </CheckBoxPreference>
43 <CheckBoxPreference
44 android:defaultValue="false"
45 android:dependency="use_compass_heading_base"
46 android:key="use_compass_heading_always"
47 android:layout="?android:attr/preferenceLayoutChild"
48 android:summary="Get current heading from compass even at higher speeds"
49 android:title="Compass always" />
50 <CheckBoxPreference
51 android:defaultValue="false"
52 android:dependency="use_compass_heading_base"
53 android:key="use_compass_heading_fast"
54 android:layout="?android:attr/preferenceLayoutChild"
55 android:summary="turns much smoother, WARNING: WILL EAT ALL your CPU!!"
56 android:title="fast Compass" >
57 </CheckBoxPreference>
58 </PreferenceCategory>
59 <PreferenceCategory android:title="Units" >
60 <CheckBoxPreference
61 android:defaultValue="false"
62 android:key="use_imperial"
63 android:summary="Use Imperial units instead of metric units"
64 android:title="Imperial" />
65 </PreferenceCategory>
66 <PreferenceCategory android:title="Routing" >
67 <CheckBoxPreference
68 android:defaultValue="true"
69 android:key="use_route_highways"
70 android:summary="prefer Highways for routing"
71 android:title="prefer Highways" />
72 <CheckBoxPreference
73 android:defaultValue="true"
74 android:key="speak_street_names"
75 android:summary="Say Streetnames when navigating. on foreign languages streetnames may sound strange!"
76 android:title="speak Streetnames" />
77 </PreferenceCategory>
78 <PreferenceCategory android:title="GUI" >
79 <CheckBoxPreference
80 android:defaultValue="false"
81 android:key="show_3d_map"
82 android:summary="show map in 3D [BETA]"
83 android:title="3D" />
84 <CheckBoxPreference
85 android:defaultValue="true"
86 android:key="save_zoomlevel"
87 android:summary="save last Zoomlevel"
88 android:title="Zoomlevel" />
89 <CheckBoxPreference
90 android:defaultValue="true"
91 android:key="use_anti_aliasing"
92 android:summary="draw with AntiAlias, map is faster when this is OFF"
93 android:title="AntiAlias" />
94 <CheckBoxPreference
95 android:defaultValue="false"
96 android:key="use_custom_font"
97 android:summary="use ZANavi custom font"
98 android:title="use custom Font" />
99
100 <ListPreference
101 android:defaultValue="2"
102 android:entries="@array/mapfontsizeArray"
103 android:entryValues="@array/mapfontsizeValues"
104 android:key="map_font_size"
105 android:summary="Select font size for map text"
106 android:title="map font size" />
107 <ListPreference
108 android:defaultValue="1"
109 android:entries="@array/mapdrawingtimeoutArray"
110 android:entryValues="@array/mapdrawingtimeoutValues"
111 android:key="cancel_map_drawing_timeout"
112 android:summary="Timeout for map drawing. set to long only on fast devices!"
113 android:title="Timeout for map drawing" />
114 <ListPreference
115 android:defaultValue="0"
116 android:entries="@array/drawatorderArray"
117 android:entryValues="@array/drawatorderValues"
118 android:key="drawatorder"
119 android:summary="Draw more Detail on map. change only on fast devices!"
120 android:title="Draw more Detail" />
121 <ListPreference
122 android:defaultValue="7168"
123 android:entries="@array/mapcacheArray"
124 android:entryValues="@array/mapcacheValues"
125 android:key="mapcache"
126 android:summary="Cachesize for Mapdrawing"
127 android:title="Cache for Map" />
128 <ListPreference
129 android:defaultValue="1"
130 android:entries="@array/streetsearchrArray"
131 android:entryValues="@array/streetsearchrValues"
132 android:key="streetsearch_r"
133 android:summary="Searchradius for streets inside a town. Bigger radius will find streets further away from town center"
134 android:title="Searchradius" />
135
136 <CheckBoxPreference
137 android:defaultValue="false"
138 android:key="gui_oneway_arrows"
139 android:summary="show oneway street arrows [BETA]"
140 android:title="OneWay Arrows" />
141 </PreferenceCategory>
142 <PreferenceCategory android:title="Debug" >
143 <CheckBoxPreference
144 android:defaultValue="false"
145 android:key="show_debug_messages"
146 android:summary="show Debug Messages [DEBUG]"
147 android:title="Debug Mgs" />
148 <CheckBoxPreference
149 android:defaultValue="false"
150 android:key="enable_debug_functions"
151 android:summary="enable Debug functions in menu [DEBUG]"
152 android:title="Debug Functions" />
153 </PreferenceCategory>
154 <PreferenceCategory android:title="Language" >
155 <ListPreference
156 android:defaultValue="*DEFAULT*"
157 android:entries="@array/langArray"
158 android:entryValues="@array/langValues"
159 android:key="navit_lang"
160 android:summary="Select Language for messages. needs a RESTART!!"
161 android:title="Language" />
162 </PreferenceCategory>
163 <PreferenceCategory android:title="Data" >
164 <EditTextPreference
165 android:dialogMessage="mapdir"
166 android:dialogTitle="Enter Map Directory"
167 android:key="map_directory"
168 android:summary="Change mapdirectory. needs a RESTART!!"
169 android:title="Map Directory" />
170 </PreferenceCategory>
171 <PreferenceCategory android:title="Info" >
172 <EditTextPreference
173 android:name="About"
174 android:defaultValue=""
175 android:key="about_edit_text"
176 android:selectable="false"
177 android:summary="ZANavi Version ???"
178 android:title="ZANavi Version" />
179 </PreferenceCategory>
180
181 </PreferenceScreen>

   
Visit the ZANavi Wiki