2017-05-05 16:36:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
|
|
|
This file is a part of Mastodon Etalab for mastodon.etalab.gouv.fr
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Mastodon Etalab 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 Thomas Schneider; if not,
|
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingTop="20dp"
|
|
|
|
android:paddingBottom="20dp"
|
|
|
|
android:paddingLeft="@dimen/toot_padding"
|
|
|
|
android:paddingRight="@dimen/toot_padding"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/toot_cw_content"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:animateLayoutChanges="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:hint="@string/toot_cw_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/toot_reply_content_container"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:text="@string/toot_reply_content_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toot_reply_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:gravity="top|start"
|
|
|
|
android:maxLines="4"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/toot_close_reply"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
app:fabSize="mini"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
|
|
|
app:srcCompat="@drawable/ic_close" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/toot_content"
|
|
|
|
android:gravity="top|start"
|
|
|
|
android:hint="@string/toot_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="0dp" />
|
|
|
|
<LinearLayout
|
|
|
|
android:padding="5dp"
|
|
|
|
android:id="@+id/toot_picture_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxHeight="100dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/loading_picture"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:gravity="bottom|center_horizontal"
|
|
|
|
android:layout_height="50dp">
|
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:indeterminate="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<RelativeLayout
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/toot_show_accounts"
|
|
|
|
android:maxHeight="300dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/toot_close_accounts"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
app:fabSize="mini"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
|
|
|
app:srcCompat="@drawable/ic_close" />
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/toot_lv_accounts"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/toot_picture"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:src="@drawable/ic_action_camera"
|
|
|
|
/>
|
|
|
|
<ImageButton
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:id="@+id/toot_visibility"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:src="@drawable/ic_action_globe"
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/toot_cw"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:text="@string/cw"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Borderless.Colored"
|
2017-05-25 18:34:20 +02:00
|
|
|
android:layout_width="40dp"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:layout_height="40dp" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toot_space_left"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_height="40dp" />
|
|
|
|
<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>
|
2017-06-07 15:47:05 +02:00
|
|
|
<CheckBox
|
|
|
|
android:text="@string/toot_sensitive"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/toot_sensitive"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-05-05 16:36:04 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|