missing preference title for automation

This commit is contained in:
Milos Kozak 2019-09-15 10:13:07 +02:00
parent c68190a22b
commit 180b70f3da

View file

@ -1,10 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:validate="http://schemas.android.com/apk/res-auto">
<ListPreference
android:title="@string/locationservice"
android:defaultValue="PASSIVE"
android:entries="@array/location"
android:entryValues="@array/locationValues"
android:key="@string/key_location" />
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/automation">
<ListPreference
android:defaultValue="PASSIVE"
android:entries="@array/location"
android:entryValues="@array/locationValues"
android:key="@string/key_location"
android:title="@string/locationservice" />
</PreferenceCategory>
</PreferenceScreen>