2017-06-24 11:38:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
This file is a part of Fedilab
|
2017-06-24 11:38:18 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-06-24 11:38:18 +02:00
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Fedilab; if not,
|
2017-06-24 11:38:18 +02:00
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
2019-02-27 19:17:39 +01:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-06-24 11:38:18 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-02-27 19:17:39 +01:00
|
|
|
xmlns:TagsEditText="http://schemas.android.com/apk/res-auto"
|
2017-06-24 11:38:18 +02:00
|
|
|
android:id="@+id/swipeContainer"
|
|
|
|
android:paddingLeft="@dimen/drawer_padding"
|
|
|
|
android:paddingRight="@dimen/drawer_padding"
|
2019-01-06 15:36:01 +01:00
|
|
|
android:layout_marginLeft="@dimen/fab_margin"
|
|
|
|
android:layout_marginRight="@dimen/fab_margin"
|
2017-06-24 11:38:18 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-01-06 15:36:01 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="@dimen/fab_margin"
|
|
|
|
android:layout_marginEnd="@dimen/fab_margin">
|
2017-06-24 11:38:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
2018-11-23 19:18:38 +01:00
|
|
|
android:paddingLeft="@dimen/fab_margin"
|
|
|
|
android:paddingRight="@dimen/fab_margin"
|
2017-06-24 11:38:18 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="UselessParent">
|
2019-01-25 09:15:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_confirmations"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2017-06-24 11:38:18 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_share_validation"
|
|
|
|
android:layout_width="wrap_content"
|
2019-04-21 19:11:30 +02:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2017-06-24 11:38:18 +02:00
|
|
|
android:text="@string/set_share_validation"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2017-09-10 09:48:05 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_share_validation_fav"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2017-09-10 09:48:05 +02:00
|
|
|
android:text="@string/set_share_validation_fav"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-25 09:15:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_timelines"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2017-10-30 13:29:39 +01:00
|
|
|
|
2019-05-25 18:58:31 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_remember_position"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_remember_position"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2018-01-06 08:19:26 +01:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_old_direct_timeline"
|
2018-01-06 08:19:26 +01:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_old_direct_timeline"
|
2018-01-06 08:19:26 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2017-10-30 13:29:39 +01:00
|
|
|
|
2019-03-19 02:04:09 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_hide_delete_notification_on_tab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_hide_delete_notification_on_tab"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-05-18 16:47:49 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_blur_sensitive"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_blur_sensitive"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_long_press_media"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_long_press_media"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-05-19 14:33:24 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_timeline_in_list"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_timeline_in_list"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-25 09:15:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_notification"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2019-01-23 09:54:26 +01:00
|
|
|
|
2017-11-11 10:05:37 +01:00
|
|
|
<!-- LIVE NOTIFICATIONS SETTINGS -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_live_notify"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2017-11-11 10:05:37 +01:00
|
|
|
android:text="@string/live_notif"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-08-20 12:11:58 +02:00
|
|
|
|
2018-10-14 10:06:48 +02:00
|
|
|
<!-- BACKGROUND PROCESS SETTINGS -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_keep_background_process"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2018-10-14 10:06:48 +02:00
|
|
|
android:text="@string/set_keep_background_process"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-25 09:15:33 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_interface"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2017-12-10 08:33:26 +01:00
|
|
|
|
2019-01-23 09:54:26 +01:00
|
|
|
<!-- COMPACT MODE -->
|
2019-02-13 18:36:29 +01:00
|
|
|
<TextView
|
|
|
|
android:text="@string/set_mode"
|
|
|
|
android:layout_width="match_parent"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2019-02-13 18:36:29 +01:00
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/set_mode"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton android:id="@+id/set_normal_mode"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_normal"
|
|
|
|
/>
|
|
|
|
<RadioButton android:id="@+id/set_compact_mode"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_compact"
|
|
|
|
/>
|
|
|
|
<RadioButton android:id="@+id/set_console_mode"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_console"
|
|
|
|
/>
|
|
|
|
</RadioGroup>
|
2018-02-09 17:39:09 +01:00
|
|
|
|
2018-09-15 09:33:53 +02:00
|
|
|
|
2019-04-22 11:12:42 +02:00
|
|
|
<!-- DISPLAY NEW BADGE -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_new_badge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_new_badge"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2018-03-25 11:39:53 +02:00
|
|
|
<!-- DISPLAY BOOKMARK BUTTON -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_bookmarks"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2018-03-25 11:39:53 +02:00
|
|
|
android:text="@string/set_display_bookmark_button"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-05-24 19:17:44 +02:00
|
|
|
|
|
|
|
<!-- DISPLAY BOT ICON -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_bot_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_bot_icon"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-01-24 11:15:45 +01:00
|
|
|
|
2018-04-28 12:27:49 +02:00
|
|
|
<!-- FIT PREVIEWS -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_fit_preview"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2018-04-28 12:27:49 +02:00
|
|
|
android:text="@string/set_fit_preview"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-23 09:54:26 +01:00
|
|
|
<!-- GIF AVATARS -->
|
2018-05-12 09:41:47 +02:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_disable_gif"
|
2018-05-12 09:41:47 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_disable_gif"
|
2018-05-12 09:41:47 +02:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2018-09-15 09:53:13 +02:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_display_card"
|
2018-09-15 09:53:13 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_card"
|
2018-09-15 09:53:13 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2018-05-12 11:11:17 +02:00
|
|
|
|
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_display_video_preview"
|
2018-05-12 11:11:17 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_video_preview"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_content_after_fetch_more"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_display_content_after_fetch_more"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-25 09:15:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_composing"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2019-01-23 09:54:26 +01:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_auto_add_media_url"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_auto_add_media_url"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_auto_store"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_auto_store_toot"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<!-- CARRIAGE RETURN AFTER MENTION IN REPLIES -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_capitalize"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_capitalize"
|
2018-05-12 11:11:17 +02:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2018-08-15 11:24:57 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_automatically_split_toot"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2018-08-15 11:24:57 +02:00
|
|
|
android:text="@string/set_automatically_split_toot"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-05-22 17:33:52 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:id="@+id/set_split_container"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/set_split_text"
|
|
|
|
android:gravity="end"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<SeekBar
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:id="@+id/set_split_size"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
</SeekBar>
|
|
|
|
</LinearLayout>
|
2018-08-15 11:24:57 +02:00
|
|
|
|
2018-10-28 11:32:23 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_display_emoji"
|
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2018-10-28 11:32:23 +01:00
|
|
|
android:text="@string/set_display_emoji"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-09-16 19:05:54 +02:00
|
|
|
|
2019-01-23 09:54:26 +01:00
|
|
|
<!-- PUT THE WHOLE CONTENT WHEN SHARING -->
|
2018-11-07 08:07:45 +01:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_share_details"
|
2018-11-07 08:07:45 +01:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_share_details"
|
2018-11-07 08:07:45 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2019-02-13 21:31:08 +01:00
|
|
|
|
2019-03-23 10:09:25 +01:00
|
|
|
<!-- RETRIEVE METADATA -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_retrieve_metadata_share_from_extras"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_retrieve_metadata_share_from_extras"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-02-13 21:31:08 +01:00
|
|
|
<!-- CUSTOM SHARING -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_custom_sharing"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
2019-02-15 00:50:05 +01:00
|
|
|
android:text="@string/settings_title_custom_sharing"
|
2019-02-13 21:31:08 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2019-05-13 18:15:45 +02:00
|
|
|
<!-- ADD TAGS -->
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_forward_tags"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_forward_tags"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-02-13 21:31:08 +01:00
|
|
|
|
|
|
|
<EditText
|
2019-02-15 00:50:05 +01:00
|
|
|
android:hint="@string/settings_custom_sharing_url"
|
2019-02-13 21:31:08 +01:00
|
|
|
android:id="@+id/custom_sharing_url"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-11-07 08:07:45 +01:00
|
|
|
|
2019-05-31 18:20:54 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_photo_editor"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_photo_editor"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
2019-01-25 09:15:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-25 09:15:33 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/settings_category_label_hiddencontent"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
2018-11-14 15:42:26 +01:00
|
|
|
|
2019-01-23 09:54:26 +01:00
|
|
|
<!-- EXPAND CW -->
|
2018-11-10 10:07:44 +01:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_expand_cw"
|
2018-11-10 10:07:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/expand_cw"
|
2018-11-10 10:07:44 +01:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-23 09:54:26 +01:00
|
|
|
<!-- EXPAND Images -->
|
2019-01-22 16:31:54 +01:00
|
|
|
<CheckBox
|
2019-01-23 09:54:26 +01:00
|
|
|
android:id="@+id/set_expand_image"
|
2019-01-22 16:31:54 +01:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-23 09:54:26 +01:00
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/expand_image"
|
2019-01-22 16:31:54 +01:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-02-02 11:01:24 +01:00
|
|
|
<!-- OPTIMIZATION SETTINGS -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/optimization"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?colorAccent" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/settings_title_battery"
|
|
|
|
style="?attr/shapeBorder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/battery_layout_spinner"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
|
|
android:text="@string/set_attachment_action"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/set_attachment_group"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton android:id="@+id/set_attachment_always"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_attachment_always"
|
|
|
|
/>
|
|
|
|
<RadioButton android:id="@+id/set_attachment_wifi"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_attachment_wifi"
|
|
|
|
/>
|
|
|
|
<RadioButton android:id="@+id/set_attachment_ask"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_attachment_ask"
|
|
|
|
/>
|
|
|
|
</RadioGroup>
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_optimize_loading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_optimize_loading"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-02-14 10:06:18 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/set_security_provider"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/settings_checkbox_margin"
|
|
|
|
android:layout_marginBottom="@dimen/settings_checkbox_margin"
|
|
|
|
android:text="@string/set_security_provider"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-02-23 18:13:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Choose stream -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_video_mode"/>
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/set_video_mode"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2019-02-27 19:17:39 +01:00
|
|
|
<!-- Featured tags -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:labelFor="@+id/set_featured_tags"
|
|
|
|
android:text="@string/featured_hashtags"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<mabbas007.tagsedittext.TagsEditText
|
|
|
|
android:id="@+id/set_featured_tags"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:minLines="3"
|
|
|
|
android:lines="3"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
TagsEditText:allowSpaceInTag="true"
|
|
|
|
TagsEditText:tagsCloseImageRight="@drawable/tag_close"
|
|
|
|
TagsEditText:tagsTextColor="?colorAccent"
|
|
|
|
TagsEditText:tagsTextSize="@dimen/defaultTagsTextSize"
|
|
|
|
TagsEditText:tagsCloseImagePadding="@dimen/defaultTagsCloseImagePadding"
|
|
|
|
android:inputType="textMultiLine" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-11-28 09:44:19 +01:00
|
|
|
<!-- TRUNCATE LONG TOOTS -->
|
2018-11-28 11:24:59 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
2018-11-28 09:44:19 +01:00
|
|
|
android:layout_width="wrap_content"
|
2018-11-28 11:24:59 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/set_truncate_toot"/>
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/set_truncate_toots"
|
|
|
|
android:gravity="end"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<SeekBar
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:id="@+id/set_truncate_size"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
</SeekBar>
|
|
|
|
</LinearLayout>
|
2018-11-28 09:44:19 +01:00
|
|
|
|
2018-01-24 11:15:45 +01:00
|
|
|
<!-- Resize pictures -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/set_resize_picture"/>
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/set_resize_picture"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-12-22 10:16:45 +01:00
|
|
|
|
2018-11-24 18:56:12 +01:00
|
|
|
|
2017-08-28 10:59:44 +02:00
|
|
|
<!-- Translation engine -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/translation_layout_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2018-08-14 16:20:53 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-08-28 10:59:44 +02:00
|
|
|
android:layout_height="wrap_content"
|
2018-08-14 16:20:53 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/about_yandex"/>
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/translation_layout_spinner"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<CheckBox
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:id="@+id/set_trans_forced"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
|
|
android:hint="@string/your_api_key"
|
|
|
|
android:id="@+id/translation_key"
|
|
|
|
android:layout_width="match_parent"
|
2017-09-23 08:16:32 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2017-08-28 10:59:44 +02:00
|
|
|
</LinearLayout>
|
2017-08-20 12:11:58 +02:00
|
|
|
|
2017-06-27 19:18:46 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/file_chooser"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:maxLines="1"
|
|
|
|
android:text="@string/set_folder_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textStyle="italic"
|
2017-06-30 17:09:07 +02:00
|
|
|
android:textColor="?attr/colorAccent"
|
2017-06-27 19:18:46 +02:00
|
|
|
android:id="@+id/set_folder"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:text="@string/click_to_change"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-24 11:38:18 +02:00
|
|
|
<CheckBox
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/set_embedded_browser"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:text="@string/embedded_browser"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-02-14 17:46:38 +01:00
|
|
|
<Button
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:id="@+id/update_tracking_domains"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:text="@string/update_tracking_domains" />
|
2018-02-09 17:01:13 +01:00
|
|
|
<CheckBox
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/set_custom_tabs"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:text="@string/custom_tabs"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-08-28 10:59:44 +02:00
|
|
|
|
2017-08-25 15:53:04 +02:00
|
|
|
|
2017-06-24 11:38:18 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/set_javascript_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/use_javascript"/>
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
|
|
android:id="@+id/set_javascript"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/set_cookies_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/use_cookies"/>
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
|
|
android:id="@+id/set_cookies"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2018-05-11 10:40:58 +02:00
|
|
|
|
|
|
|
<!-- THEME -->
|
2017-06-30 17:09:07 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-05-11 10:40:58 +02:00
|
|
|
android:text="@string/set_theme"/>
|
|
|
|
<Spinner
|
2017-06-30 17:09:07 +02:00
|
|
|
android:id="@+id/set_night_mode"
|
|
|
|
android:layout_width="wrap_content"
|
2018-05-11 10:40:58 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2017-06-30 17:09:07 +02:00
|
|
|
</LinearLayout>
|
2017-08-07 10:20:44 +02:00
|
|
|
|
|
|
|
<!-- TOOTS visibility -->
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/toot_visibility_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/toots_visibility_tilte"/>
|
|
|
|
<ImageButton
|
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:id="@+id/set_toot_visibility"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
2017-10-15 12:05:26 +02:00
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
2017-10-28 14:32:18 +02:00
|
|
|
android:src="@drawable/ic_public"
|
2018-12-10 14:58:45 +01:00
|
|
|
android:contentDescription="@string/toot_visibility_tilte" />
|
2017-08-07 10:20:44 +02:00
|
|
|
</LinearLayout>
|
2017-08-07 01:53:33 +02:00
|
|
|
<!-- NSFW Timeout -->
|
|
|
|
<TextView
|
2017-08-07 14:09:38 +02:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
2017-08-07 01:53:33 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/set_nsfw_timeout"/>
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/set_nsfw_timeout_value"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<SeekBar
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:id="@+id/set_nsfw_timeout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
</SeekBar>
|
|
|
|
</LinearLayout>
|
2017-06-24 11:38:18 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|