mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-02 14:43:09 +01:00
58 lines
2.9 KiB
XML
58 lines
2.9 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">
|
|
|
|
<PreferenceCategory android:title="@string/preferences_chats__chats">
|
|
<org.thoughtcrime.securesms.preferences.widgets.SignalListPreference
|
|
android:key="pref_message_body_text_size"
|
|
android:title="@string/preferences_chats__message_text_size"
|
|
android:entries="@array/pref_message_font_size_entries"
|
|
android:entryValues="@array/pref_message_font_size_values"
|
|
android:defaultValue="16">
|
|
</org.thoughtcrime.securesms.preferences.widgets.SignalListPreference>
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
android:defaultValue="true"
|
|
android:key="pref_show_invite_reminder"
|
|
android:title="@string/preferences_chats__show_invitation_prompts"
|
|
android:summary="@string/preferences_chats__display_invitation_prompts_for_contacts_without_signal" />
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="pref_system_emoji"
|
|
android:title="@string/preferences_advanced__use_system_emoji"
|
|
android:summary="@string/preferences_advanced__disable_signal_built_in_emoji_support" />
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="pref_enter_sends"
|
|
android:summary="@string/preferences__pressing_the_enter_key_will_send_text_messages"
|
|
android:title="@string/preferences__pref_enter_sends_title"/>
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="pref_system_contact_photos"
|
|
android:summary="@string/preferences__display_contact_photos_from_your_address_book_if_available"
|
|
android:title="@string/preferences__pref_use_address_book_photos"/>
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:layout="@layout/preference_divider"/>
|
|
|
|
<PreferenceCategory android:key="backup_category" android:title="@string/preferences_chats__backups">
|
|
<androidx.preference.Preference
|
|
android:key="pref_backup"
|
|
android:summary="@string/preferences_chats__backup_chats_to_external_storage"
|
|
android:persistent="false"
|
|
android:title="@string/preferences_chats__chat_backups" />
|
|
|
|
<androidx.preference.Preference
|
|
android:key="pref_transfer"
|
|
android:summary="@string/preferences_chats__transfer_account_to_a_new_android_device"
|
|
android:persistent="false"
|
|
android:title="@string/preferences_chats__transfer_account" />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|