/[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 28 - (show annotations) (download) (as text)
Sun Jun 17 08:12:47 2012 UTC (11 years, 10 months ago) by zoff99
File MIME type: text/xml
File size: 8691 byte(s)
lots of new stuff and 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="true"
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="true"
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
78 <ListPreference
79 android:defaultValue="2"
80 android:entries="@array/route_styleArray"
81 android:entryValues="@array/route_styleValues"
82 android:key="route_style"
83 android:summary="Paint Route on map in different styles"
84 android:title="Route Style" />
85 </PreferenceCategory>
86 <PreferenceCategory android:title="GUI" >
87 <CheckBoxPreference
88 android:defaultValue="false"
89 android:key="show_3d_map"
90 android:summary="show map in 3D [BETA]"
91 android:title="3D" />
92 <CheckBoxPreference
93 android:defaultValue="true"
94 android:key="save_zoomlevel"
95 android:summary="save last Zoomlevel"
96 android:title="Zoomlevel" />
97 <CheckBoxPreference
98 android:defaultValue="true"
99 android:key="use_anti_aliasing"
100 android:summary="draw with AntiAlias, map is faster when this is OFF"
101 android:title="AntiAlias" />
102 <CheckBoxPreference
103 android:defaultValue="true"
104 android:key="use_custom_font"
105 android:summary="use ZANavi custom font"
106 android:title="use custom Font" />
107
108 <ListPreference
109 android:defaultValue="2"
110 android:entries="@array/mapfontsizeArray"
111 android:entryValues="@array/mapfontsizeValues"
112 android:key="map_font_size"
113 android:summary="Select font size for map text"
114 android:title="map font size" />
115 <ListPreference
116 android:defaultValue="1"
117 android:entries="@array/mapdrawingtimeoutArray"
118 android:entryValues="@array/mapdrawingtimeoutValues"
119 android:key="cancel_map_drawing_timeout"
120 android:summary="Timeout for map drawing. set to long only on fast devices!"
121 android:title="Timeout for map drawing" />
122 <ListPreference
123 android:defaultValue="0"
124 android:entries="@array/drawatorderArray"
125 android:entryValues="@array/drawatorderValues"
126 android:key="drawatorder"
127 android:summary="Draw more Detail on map. change only on fast devices!"
128 android:title="Draw more Detail" />
129 <ListPreference
130 android:defaultValue="7168"
131 android:entries="@array/mapcacheArray"
132 android:entryValues="@array/mapcacheValues"
133 android:key="mapcache"
134 android:summary="Cachesize for Mapdrawing"
135 android:title="Cache for Map" />
136 <ListPreference
137 android:defaultValue="2"
138 android:entries="@array/streetsearchrArray"
139 android:entryValues="@array/streetsearchrValues"
140 android:key="streetsearch_r"
141 android:summary="Searchradius for streets inside a town. Bigger radius will find streets further away from town center"
142 android:title="Searchradius" />
143
144 <CheckBoxPreference
145 android:defaultValue="true"
146 android:key="gui_oneway_arrows"
147 android:summary="show oneway street arrows [BETA]"
148 android:title="OneWay Arrows" />
149 </PreferenceCategory>
150 <PreferenceCategory android:title="Debug" >
151 <CheckBoxPreference
152 android:defaultValue="false"
153 android:key="show_debug_messages"
154 android:summary="show Debug Messages [DEBUG]"
155 android:title="Debug Mgs" />
156 <CheckBoxPreference
157 android:defaultValue="false"
158 android:key="enable_debug_functions"
159 android:summary="enable Debug functions in menu [DEBUG]"
160 android:title="Debug Functions" />
161 </PreferenceCategory>
162 <PreferenceCategory android:title="Language" >
163 <ListPreference
164 android:defaultValue="*DEFAULT*"
165 android:entries="@array/langArray"
166 android:entryValues="@array/langValues"
167 android:key="navit_lang"
168 android:summary="Select Language for messages. needs a RESTART!!"
169 android:title="Language" />
170 </PreferenceCategory>
171 <PreferenceCategory android:title="Data" >
172 <EditTextPreference
173 android:dialogMessage="mapdir"
174 android:dialogTitle="Enter Map Directory"
175 android:key="map_directory"
176 android:summary="Change mapdirectory. needs a RESTART!!"
177 android:title="Map Directory" />
178 </PreferenceCategory>
179 <PreferenceCategory android:title="Info" >
180 <EditTextPreference
181 android:name="About"
182 android:defaultValue=""
183 android:key="about_edit_text"
184 android:selectable="false"
185 android:summary="ZANavi Version ???"
186 android:title="ZANavi Version" />
187 </PreferenceCategory>
188
189 </PreferenceScreen>

   
Visit the ZANavi Wiki