mirror of https://github.com/kurisufriend/Clover
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
889 B
20 lines
889 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<CheckBoxPreference
|
|
android:key="preference_watch_background_enabled"
|
|
android:summaryOff="@string/watch_enable_background_off"
|
|
android:summaryOn="@string/watch_enable_background_on"
|
|
android:title="@string/watch_enable_background" />
|
|
|
|
<ListPreference
|
|
android:dependency="preference_watch_background_enabled"
|
|
android:defaultValue="60"
|
|
android:dialogTitle="@string/watch_background_timeout_description"
|
|
android:entries="@array/watch_background_timeouts"
|
|
android:entryValues="@array/watch_background_timeouts_int"
|
|
android:key="preference_watch_background_timeout"
|
|
android:summary="Foo"
|
|
android:title="@string/watch_background_timeout_description" />
|
|
|
|
</PreferenceScreen> |