2019-07-03 01:19:45 +02:00
|
|
|
<!--
|
|
|
|
~ Copyright 2018 The Android Open Source Project
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-07-03 01:19:45 +02:00
|
|
|
<PreferenceCategory
|
2019-09-14 14:41:00 +02:00
|
|
|
android:key="category_search"
|
|
|
|
android:title="@string/search">
|
2019-07-03 01:19:45 +02:00
|
|
|
<EditTextPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
android:defaultValue="/sdcard/"
|
|
|
|
app:key="search_location"
|
|
|
|
app:title="@string/search_location"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2019-07-03 01:19:45 +02:00
|
|
|
</PreferenceCategory>
|
2019-07-24 22:19:43 +02:00
|
|
|
<PreferenceCategory
|
2019-09-14 14:41:00 +02:00
|
|
|
android:key="category_log"
|
|
|
|
android:title="@string/logging">
|
2019-07-24 22:19:43 +02:00
|
|
|
<ListPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/log_level"
|
|
|
|
android:entryValues="@array/log_level_val"
|
|
|
|
app:key="log_level"
|
|
|
|
app:title="@string/log_level"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2019-07-24 22:19:43 +02:00
|
|
|
</PreferenceCategory>
|
2019-07-03 01:19:45 +02:00
|
|
|
<PreferenceCategory
|
2019-09-14 14:41:00 +02:00
|
|
|
android:key="category_localization"
|
|
|
|
android:title="@string/localization">
|
2019-07-03 01:19:45 +02:00
|
|
|
<ListPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
android:defaultValue="sys"
|
|
|
|
android:entries="@array/language_names"
|
|
|
|
android:entryValues="@array/language_values"
|
|
|
|
app:key="localization_language"
|
|
|
|
app:title="@string/localization_language"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2019-07-03 01:19:45 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
</androidx.preference.PreferenceScreen>
|