19 lines
647 B
XML
19 lines
647 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/automation"
|
|
app:initialExpandedChildrenCount="0">
|
|
|
|
<ListPreference
|
|
android:defaultValue="PASSIVE"
|
|
android:entries="@array/location"
|
|
android:entryValues="@array/locationValues"
|
|
android:key="@string/key_location"
|
|
android:title="@string/locationservice" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</androidx.preference.PreferenceScreen>
|