linphone-android/app/src/main/res/layout/settings_chat.xml

71 lines
No EOL
3.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:linphone="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:orientation="vertical">
<org.linphone.settings.widget.TextSetting
android:id="@+id/pref_image_sharing_server"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:hint="@string/pref_image_sharing_server_title"
linphone:subtitle="@string/pref_image_sharing_server_desc"
linphone:title="@string/pref_image_sharing_server_title" />
<org.linphone.settings.widget.ListSetting
android:id="@+id/pref_auto_download_policy"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_auto_download_policy_title"
linphone:list_items_names="@array/pref_auto_download_policy_entries_labels"
linphone:list_items_values="@array/pref_auto_download_policy_entries_values"/>
<org.linphone.settings.widget.TextSetting
android:id="@+id/pref_auto_download_max_size"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:hint="@string/pref_auto_download_max_size_title"
linphone:title="@string/pref_auto_download_max_size_title" />
<org.linphone.settings.widget.SwitchSetting
android:id="@+id/pref_android_app_make_downloaded_images_visible_in_native_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_android_app_make_downloaded_images_visible_in_native_gallery_title"
linphone:subtitle="@string/pref_android_app_make_downloaded_images_visible_in_native_gallery_desc" />
<org.linphone.settings.widget.BasicSetting
android:id="@+id/pref_android_app_notif_settings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_android_app_notif_settings_title"/>
<org.linphone.settings.widget.SwitchSetting
android:id="@+id/pref_android_app_hide_empty_chat_rooms"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_android_app_hide_empty_chat_rooms_title" />
<org.linphone.settings.widget.SwitchSetting
android:id="@+id/pref_android_app_hide_chat_rooms_from_removed_proxies"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_android_app_hide_chat_rooms_from_removed_proxies_title"
linphone:subtitle="@string/pref_android_app_hide_chat_rooms_from_removed_proxies_desc" />
<org.linphone.settings.widget.SwitchSetting
android:id="@+id/pref_android_app_enable_ephemeral_messages_beta"
android:layout_width="match_parent"
android:layout_height="wrap_content"
linphone:title="@string/pref_android_app_enable_ephemeral_messages_beta" />
</LinearLayout>
</ScrollView>