lose embedded source jars from upstream branch
[debian/openrocket] / android / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
3   android:key="preferences"
4   android:title="Pref Title"
5   android:summary="pref summary"  
6     <ListPreference
7         android:defaultValue="1"
8         android:entries="@array/PreferenceMotorBrowserGroupingEntries"
9         android:entryValues="@array/PreferenceMotorBrowserGroupingValues"
10         android:key="@string/PreferenceMotorBrowserGroupingOption"
11         android:summary="Set the grouping in Motor Browser"
12         android:title="@string/motorbrowsergrouptitle" />
13
14     <CheckBoxPreference
15         android:defaultValue="false"
16         android:title="@string/useinternalfilebrowsertitle"
17         android:key="@string/PreferenceUseInternalFileBrowserOption"
18         android:summary="@string/useinternalfilebrowsersummary"
19         />
20      
21     <CheckBoxPreference
22         android:defaultValue="false"
23         android:title="@string/showonlyorkfiles"
24         android:key="@string/PreferenceShowOnlyOrkFiles"
25         android:summary="@string/showonlyorkfilessummary"
26         android:dependency="@string/PreferenceUseInternalFileBrowserOption" 
27         />
28     
29     <!-- This preference is hidden - not to be configured in the Preference screen
30     <Preference
31         android:defaultValue="/"
32         android:key="@string/PreferenceFileBrowserBaseDirectory"
33         />
34      -->
35      
36     <PreferenceScreen
37         android:key="UnitPrefences"
38         android:summary="Configure units"
39         android:title="Units" >
40         <ListPreference
41             android:defaultValue="cm"
42             android:entries="@array/PreferenceUnitLengthEntries"
43             android:entryValues="@array/PreferenceUnitLengthValues"
44             android:key="@string/PreferenceUnitLengthOption"
45             android:summary="Set the length unit"
46             android:title="Unit of Length" />
47         <ListPreference
48             android:defaultValue="g"
49             android:entries="@array/PreferenceUnitMassEntries"
50             android:entryValues="@array/PreferenceUnitMassValues"
51             android:key="@string/PreferenceUnitMassOption"
52             android:summary="Set the mass unit"
53             android:title="Unit of Mass" />
54         <ListPreference
55             android:defaultValue="m/s"
56             android:entries="@array/PreferenceUnitVelocityEntries"
57             android:entryValues="@array/PreferenceUnitVelocityValues"
58             android:key="@string/PreferenceUnitVelocityOption"
59             android:summary="Set the velocity unit"
60             android:title="Unit for Velocity" />
61         <ListPreference
62             android:defaultValue="m"
63             android:entries="@array/PreferenceUnitDistanceEntries"
64             android:entryValues="@array/PreferenceUnitDistanceValues"
65             android:key="@string/PreferenceUnitDistanceOption"
66             android:summary="Set the distance unit"
67             android:title="Unit for Distance and Altitude" />
68     </PreferenceScreen>
69
70 </PreferenceScreen>