2014-11-04 14:19:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2017-04-15 03:39:38 +00:00
|
|
|
<PreferenceCategory android:title="@string/preferences_app_protection__app_access">
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
|
|
android:key="pref_enable_passphrase_temporary"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/preferences__enable_passphrase"
|
|
|
|
android:summary="@string/preferences__lock_signal_and_message_notifications_with_a_passphrase"/>
|
|
|
|
|
|
|
|
<Preference android:key="pref_change_passphrase"
|
|
|
|
android:title="@string/preferences__change_passphrase"
|
|
|
|
android:summary="@string/preferences__change_your_passphrase"
|
|
|
|
android:dependency="pref_enable_passphrase_temporary"/>
|
|
|
|
|
2017-04-22 05:50:49 +00:00
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_timeout_passphrase"
|
|
|
|
android:title="@string/preferences__inactivity_timeout_passphrase"
|
|
|
|
android:summary="@string/preferences__auto_lock_signal_after_a_specified_time_interval_of_inactivity"
|
|
|
|
android:dependency="pref_enable_passphrase_temporary"/>
|
2017-04-15 03:39:38 +00:00
|
|
|
|
|
|
|
<Preference android:title="@string/preferences__inactivity_timeout_interval"
|
|
|
|
android:key="pref_timeout_interval"
|
|
|
|
android:dependency="pref_timeout_passphrase"/>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
2017-10-04 01:57:23 +00:00
|
|
|
android:defaultValue="false"
|
2017-04-15 03:39:38 +00:00
|
|
|
android:key="pref_screen_security"
|
|
|
|
android:title="@string/preferences__screen_security"
|
|
|
|
android:summary="@string/preferences__disable_screen_security_to_allow_screen_shots" />
|
2017-10-04 01:57:23 +00:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_incognito_keyboard"
|
|
|
|
android:title="@string/preferences__incognito_keyboard"
|
|
|
|
android:summary="@string/preferences_use_keyboard_without_suggestions_or_auto_correct"/>
|
2017-04-15 03:39:38 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory android:layout="@layout/preference_divider"/>
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/preferences_app_protection__communication">
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_turn_only"
|
|
|
|
android:title="@string/preferences_advanced__always_relay_calls"
|
|
|
|
android:summary="@string/preferences_advanced__relay_all_calls_through_the_signal_server_to_avoid_revealing_your_ip_address"/>
|
|
|
|
|
2017-09-16 05:38:53 +00:00
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_read_receipts"
|
|
|
|
android:title="@string/preferences__read_receipts"
|
|
|
|
android:summary="@string/preferences__if_read_receipts_are_disabled_you_wont_be_able_to_see_read_receipts"/>
|
|
|
|
|
2017-04-15 03:39:38 +00:00
|
|
|
<Preference android:key="preference_category_blocked"
|
|
|
|
android:title="@string/preferences_app_protection__blocked_contacts" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2014-11-04 14:19:48 +00:00
|
|
|
</PreferenceScreen>
|