mirror of
https://github.com/wesaphzt/privatelock.git
synced 2025-05-31 11:52:11 +00:00
26 lines
No EOL
969 B
XML
26 lines
No EOL
969 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<PreferenceCategory
|
|
android:title="Lock Service">
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="START_ON_BOOT"
|
|
android:title="System start" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="RUN_CONSTANT"
|
|
android:title="Run service when locked"
|
|
android:summary="Run service all the time, even when the screen is off, to be able to force PIN entry at any time."/>
|
|
|
|
<ListPreference
|
|
android:defaultValue="1"
|
|
android:entries="@array/array_pause_minutes"
|
|
android:entryValues="@array/array_pause_minutes_vals"
|
|
android:key="PAUSE_TIME"
|
|
android:summary="%s"
|
|
android:title="Pause length" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen> |