74 lines
2.8 KiB
XML
Executable File
74 lines
2.8 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<PreferenceCategory
|
|
android:title="Locating Options">
|
|
<CheckBoxPreference
|
|
android:title="Enable"
|
|
android:summary="Enable Transmitting phone's location though SMS messages"
|
|
android:defaultValue="false"
|
|
android:key="locate_enabled"
|
|
/>
|
|
|
|
<EditTextPreference
|
|
android:summary="locate"
|
|
android:defaultValue="locate"
|
|
android:title="Pass Phrase"
|
|
android:key="locate_pass"
|
|
android:dependency="locate_enabled" />
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory
|
|
android:title="Locking Options">
|
|
<CheckBoxPreference
|
|
android:title="Enable"
|
|
android:summary="Enable Locking the phone remotely though SMS messages"
|
|
android:defaultValue="false"
|
|
android:key="lock_pattern_enabled" />
|
|
<EditTextPreference
|
|
android:summary="lock"
|
|
android:defaultValue="lock"
|
|
android:title="Pass Phrase"
|
|
android:key="lock_pattern_pass"
|
|
android:dependency="lock_pattern_enabled"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="Map Settings">
|
|
|
|
<CheckBoxPreference
|
|
android:title="Stay Awake"
|
|
android:summary="Prevent the phone from sleeping"
|
|
android:defaultValue="false"
|
|
android:key="stay_awake" />
|
|
|
|
<ListPreference
|
|
android:title="Measurement Unit"
|
|
android:summary="Standard"
|
|
android:key="measurement_unit"
|
|
android:entries="@array/unit"
|
|
android:entryValues="@array/unit"/>
|
|
|
|
<ListPreference android:dialogTitle="Layers"
|
|
android:entryValues="@array/layers"
|
|
android:entries="@array/layers"
|
|
android:key="layers"
|
|
android:title="Layers"></ListPreference>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="System Settings">
|
|
|
|
<Preference
|
|
android:title="Back Up"
|
|
android:summary="Backs up current system settings that could be modified"
|
|
android:key="backup"
|
|
/>
|
|
|
|
<Preference
|
|
android:title="Restore"
|
|
android:summary="Restores system settings that were changed, from the backup"
|
|
android:key="restore"
|
|
/>
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|