summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml
diff options
context:
space:
mode:
authortom79 <tschneider.ac@gmail.com>2017-08-07 14:09:38 +0200
committertom79 <tschneider.ac@gmail.com>2017-08-07 14:09:38 +0200
commitca29428e80533e36522938cf8a964ba0ea58c362 (patch)
treeb1568d1505f48d395f4a9c06fcf31b48a08d6054 /app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml
parent218a874830106601a72f1f9037f4a6acc62ac9ba (diff)
Adds some changes in layout for tablets
Diffstat (limited to 'app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml')
-rw-r--r--app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml158
1 files changed, 158 insertions, 0 deletions
diff --git a/app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml b/app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml
new file mode 100644
index 000000000..81ae780b5
--- /dev/null
+++ b/app/src/main/res/layout-sw600dp/fragment_settings_optimization.xml
@@ -0,0 +1,158 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 2017 Thomas Schneider
+
+ This file is a part of Mastalab
+
+ 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.
+
+ Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with Mastalab; if not,
+ see <http://www.gnu.org/licenses>.
+-->
+<ScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/swipeContainer"
+ android:paddingLeft="@dimen/drawer_padding"
+ android:paddingRight="@dimen/drawer_padding"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_vertical"
+ android:padding="@dimen/fab_margin"
+ android:orientation="vertical"
+ tools:ignore="UselessParent">
+
+ <!-- OPTIMIZATION SETTINGS -->
+ <TextView
+ android:text="@string/settings_title_optimisation"
+ style="?attr/shapeBorder"
+ android:paddingBottom="10dp"
+ android:layout_width="match_parent"
+ android:layout_marginBottom="10dp"
+ android:layout_height="wrap_content" />
+ <!-- Toots per page -->
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_margin="10dp"
+ android:typeface="serif"
+ android:gravity="center_vertical"
+ android:layout_height="wrap_content"
+ android:textStyle="italic"
+ android:textSize="14sp"
+ android:text="@string/set_toots_page"/>
+ <LinearLayout
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_gravity="center_vertical"
+ android:layout_height="wrap_content">
+ <TextView
+ android:id="@+id/set_toots_page_value"
+ android:layout_gravity="center"
+ android:layout_width="50dp"
+ android:layout_height="wrap_content" />
+ <SeekBar
+ android:layout_gravity="center_vertical"
+ android:id="@+id/set_toots_per_page"
+ android:layout_width="300dp"
+ android:layout_height="wrap_content">
+ </SeekBar>
+ </LinearLayout>
+ <!-- Accounts per page -->
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_margin="10dp"
+ android:typeface="serif"
+ android:gravity="center_vertical"
+ android:layout_height="wrap_content"
+ android:textStyle="italic"
+ android:textSize="14sp"
+ android:text="@string/set_accounts_page"/>
+ <LinearLayout
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_gravity="center_vertical"
+ android:layout_height="wrap_content">
+ <TextView
+ android:id="@+id/set_accounts_page_value"
+ android:layout_gravity="center"
+ android:layout_width="50dp"
+ android:layout_height="wrap_content" />
+ <SeekBar
+ android:layout_gravity="center_vertical"
+ android:id="@+id/set_accounts_per_page"
+ android:layout_width="300dp"
+ android:layout_height="wrap_content">
+ </SeekBar>
+ </LinearLayout>
+ <!-- Notifications per page -->
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_margin="10dp"
+ android:typeface="serif"
+ android:gravity="center_vertical"
+ android:layout_height="wrap_content"
+ android:textStyle="italic"
+ android:textSize="14sp"
+ android:text="@string/set_notifications_page"/>
+ <LinearLayout
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_gravity="center_vertical"
+ android:layout_height="wrap_content">
+ <TextView
+ android:id="@+id/set_notifications_page_value"
+ android:layout_gravity="center"
+ android:layout_width="50dp"
+ android:layout_height="wrap_content" />
+ <SeekBar
+ android:layout_gravity="center_vertical"
+ android:id="@+id/set_notifications_per_page"
+ android:layout_width="300dp"
+ android:layout_height="wrap_content">
+ </SeekBar>
+ </LinearLayout>
+ <!-- Attachment behavior -->
+ <TextView
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"
+ 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>
+ <!-- MORE OPTIONS SETTINGS -->
+
+ <!-- END OPTIMIZATION SETTINGS -->
+ </LinearLayout>
+</ScrollView>
+