2017-08-05 17:32:27 +02:00
|
|
|
<?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"
|
|
|
|
android:fillViewport="true"
|
|
|
|
android:layout_width="match_parent"
|
2018-12-10 14:58:45 +01:00
|
|
|
android:layout_height="match_parent">
|
2017-08-05 17:32:27 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-08-06 16:30:38 +02:00
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/fab_margin"
|
|
|
|
android:paddingRight="@dimen/fab_margin"
|
2017-08-05 17:32:27 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/toot_cw_content"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:animateLayoutChanges="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:hint="@string/toot_cw_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-10-25 15:22:43 +02:00
|
|
|
<fr.gouv.etalab.mastodon.helper.MastalabAutoCompleteTextView
|
2017-08-05 17:32:27 +02:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/toot_content"
|
|
|
|
android:gravity="top|start"
|
2017-08-06 21:54:53 +02:00
|
|
|
android:inputType="textMultiLine|textCapSentences"
|
2017-08-05 17:32:27 +02:00
|
|
|
android:hint="@string/toot_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:minLines="4"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="0dp" />
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2017-10-29 17:40:35 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/progress_bar_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<ProgressBar
|
|
|
|
style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:id="@+id/upload_progress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:max="100"
|
|
|
|
android:progress="0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbar_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:textColor="@color/dark_text"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</RelativeLayout>
|
2017-08-05 17:32:27 +02:00
|
|
|
<HorizontalScrollView
|
|
|
|
android:id="@+id/picture_scrollview"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<LinearLayout
|
|
|
|
android:padding="5dp"
|
|
|
|
android:id="@+id/toot_picture_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxHeight="100dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/toot_picture"
|
2017-08-13 18:31:44 +02:00
|
|
|
android:layout_width="50dp"
|
2017-10-14 17:17:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
2017-10-11 14:09:28 +02:00
|
|
|
android:src="@drawable/ic_insert_photo"
|
2018-12-10 14:58:45 +01:00
|
|
|
android:contentDescription="@string/toot_select_image" />
|
2017-08-05 17:32:27 +02:00
|
|
|
<ImageButton
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:id="@+id/toot_visibility"
|
2017-08-13 18:31:44 +02:00
|
|
|
android:layout_width="50dp"
|
2017-10-14 17:17:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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-05 17:32:27 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/toot_cw"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:text="@string/cw"
|
2018-10-24 15:19:33 +02:00
|
|
|
android:layout_gravity="center"
|
2018-11-03 14:45:55 +01:00
|
|
|
style="?attr/borderlessColored"
|
2017-08-13 18:31:44 +02:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp" />
|
2018-10-24 14:52:08 +02:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/toot_emoji"
|
|
|
|
android:minHeight="0dp"
|
|
|
|
android:minWidth="0dp"
|
2018-10-24 15:19:33 +02:00
|
|
|
android:layout_gravity="center"
|
2018-10-24 14:52:08 +02:00
|
|
|
android:padding="2dp"
|
2018-10-24 15:19:33 +02:00
|
|
|
android:scaleType="fitXY"
|
2018-12-10 14:58:45 +01:00
|
|
|
android:contentDescription="@string/emoji_picker"
|
2018-10-24 14:52:08 +02:00
|
|
|
android:src="@drawable/emoji_one_category_smileysandpeople"
|
2018-11-03 14:45:55 +01:00
|
|
|
style="?attr/borderlessColored"
|
2018-10-24 14:52:08 +02:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
2018-10-24 15:19:33 +02:00
|
|
|
/>
|
2017-08-05 17:32:27 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/toot_space_left"
|
|
|
|
android:layout_width="0dp"
|
2018-05-11 15:55:54 +02:00
|
|
|
android:textColor="?colorAccent"
|
2017-08-05 17:32:27 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_gravity="center"
|
2017-08-13 18:31:44 +02:00
|
|
|
android:layout_height="50dp" />
|
2017-08-05 17:32:27 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/toot_it"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:text="@string/toot_it"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:gravity="center"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<CheckBox
|
|
|
|
android:text="@string/toot_sensitive"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/toot_sensitive"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|