2017-01-08 09:24:02 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-03-10 09:21:02 +11:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-17 05:15:42 +11:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-03-11 04:38:49 +11:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-17 05:15:42 +11:00
|
|
|
android:id="@+id/activity_compose"
|
|
|
|
android:layout_width="match_parent"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_height="match_parent">
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-01-17 05:15:42 +11:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2017-03-11 04:38:49 +11:00
|
|
|
|
2017-03-08 00:09:33 +11:00
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2017-02-04 11:53:33 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:background="@android:color/transparent"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:elevation="4dp"
|
2017-03-10 09:21:02 +11:00
|
|
|
android:theme="@style/AppTheme.Account.AppBarLayout"
|
2017-03-11 04:38:49 +11:00
|
|
|
app:popupTheme="@style/AppTheme.Account.ToolbarPopupTheme.Dark" />
|
2017-01-17 05:15:42 +11:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-03-11 04:38:49 +11:00
|
|
|
android:id="@+id/compose_content_warning_bar"
|
2017-01-17 05:15:42 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginBottom="8dp">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/field_content_warning"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:ems="10"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:hint="@string/hint_content_warning"
|
|
|
|
android:inputType="text|textCapSentences" />
|
2017-01-17 05:15:42 +11:00
|
|
|
|
2017-03-11 04:38:49 +11:00
|
|
|
<View
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?android:attr/listDivider"/>
|
2017-01-17 05:15:42 +11:00
|
|
|
</LinearLayout>
|
|
|
|
|
2017-03-08 00:09:33 +11:00
|
|
|
<RelativeLayout
|
2017-03-11 04:38:49 +11:00
|
|
|
android:id="@+id/compose_edit_area"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:paddingBottom="4dp"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:paddingLeft="16dp"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:paddingRight="16dp">
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-03-08 00:09:33 +11:00
|
|
|
<!--An special EditText is created at runtime here, because it has to be a modified
|
|
|
|
* anonymous class to support image/GIF picking from the soft keyboard.-->
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-03-11 04:38:49 +11:00
|
|
|
<HorizontalScrollView
|
|
|
|
android:layout_alignParentBottom="true"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/compose_media_preview_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-03-11 04:38:49 +11:00
|
|
|
<!--This is filled at runtime with ImageView's for each preview in the upload queue.-->
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-03-11 04:38:49 +11:00
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-03-08 00:09:33 +11:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingBottom="8dp"
|
2017-03-08 00:09:33 +11:00
|
|
|
android:paddingLeft="16dp"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="4dp">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/compose_photo_pick"
|
|
|
|
style="?attr/image_button_style"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
app:srcCompat="@drawable/ic_attach_file_24dp" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/action_toggle_visibility"
|
|
|
|
style="?attr/image_button_style"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
app:srcCompat="@drawable/ic_public_24dp" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/action_toggle_nsfw"
|
|
|
|
style="?attr/image_button_style"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="0dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textColor="@color/image_button_dark"
|
|
|
|
android:text="@string/toggle_nsfw" />
|
|
|
|
|
|
|
|
<android.support.v4.widget.Space
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" />
|
2017-03-08 00:09:33 +11:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/characters_left"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-11 04:38:49 +11:00
|
|
|
android:text="500"
|
|
|
|
android:textColor="?android:textColorPrimary" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/floating_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:text="@string/action_send" />
|
2017-03-08 00:09:33 +11:00
|
|
|
</LinearLayout>
|
2017-01-08 09:24:02 +11:00
|
|
|
</LinearLayout>
|
|
|
|
|
2017-03-08 00:09:33 +11:00
|
|
|
|
2017-03-10 09:21:02 +11:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|