mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="true"
|
|
android:key="pref_key_lock"
|
|
android:summary="@string/panic_setting_signout_summary"
|
|
android:title="@string/panic_setting_signout_title"
|
|
app:iconSpaceReserved="false"
|
|
app:singleLineTitle="false" />
|
|
|
|
<PreferenceCategory
|
|
android:layout="@layout/preferences_category"
|
|
android:title="@string/panic_setting_destructive_action">
|
|
|
|
<ListPreference
|
|
android:icon="@android:drawable/ic_menu_close_clear_cancel"
|
|
android:key="pref_key_panic_app"
|
|
android:summary="@string/panic_app_setting_summary"
|
|
android:title="@string/panic_app_setting_title" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:enabled="false"
|
|
android:key="pref_key_purge"
|
|
android:summary="@string/purge_setting_summary"
|
|
android:title="@string/purge_setting_title"
|
|
app:iconSpaceReserved="false"
|
|
app:singleLineTitle="false" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|