2012-07-19 21:22:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-07-02 23:47:03 +00:00
|
|
|
|
2015-06-08 18:07:46 +00:00
|
|
|
<org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer
|
2015-04-16 05:38:33 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-13 22:45:14 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-04-16 05:38:33 +00:00
|
|
|
android:id="@+id/quick_attachment_drawer"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-10 17:59:59 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/black">
|
2015-04-16 05:38:33 +00:00
|
|
|
|
2015-07-13 22:45:14 +00:00
|
|
|
<org.thoughtcrime.securesms.components.KeyboardAwareLinearLayout
|
|
|
|
android:id="@+id/layout_container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-07-02 23:47:03 +00:00
|
|
|
<RelativeLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
2015-07-10 17:59:59 +00:00
|
|
|
android:background="?conversation_background"
|
2015-07-12 18:01:38 +00:00
|
|
|
android:paddingTop="?attr/actionBarSize"
|
2015-07-02 23:47:03 +00:00
|
|
|
android:gravity="bottom">
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2014-12-15 20:25:55 +00:00
|
|
|
<FrameLayout android:id="@+id/fragment_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_above="@+id/bottom_container" />
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:id="@id/bottom_container"
|
2012-07-19 21:22:03 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-04 09:47:27 +00:00
|
|
|
android:orientation="vertical">
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
<ScrollView android:layout_width="fill_parent"
|
2014-05-29 03:53:34 +00:00
|
|
|
android:layout_height="0dp"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:layout_weight="1">
|
2015-06-17 18:54:12 +00:00
|
|
|
<FrameLayout
|
2013-06-28 03:57:27 +00:00
|
|
|
android:id="@+id/attachment_editor"
|
2015-06-17 18:54:12 +00:00
|
|
|
android:layout_width="wrap_content"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-06-17 18:54:12 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:visibility="gone">
|
|
|
|
|
2015-06-17 18:54:12 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-06-17 18:54:12 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/attachment_thumbnail"
|
2015-06-27 03:14:51 +00:00
|
|
|
android:layout_width="230dp"
|
|
|
|
android:layout_height="150dp"
|
2015-07-15 20:42:59 +00:00
|
|
|
android:contentDescription="@string/conversation_activity__attachment_thumbnail"
|
|
|
|
app:backgroundColorHint="?conversation_background" />
|
2015-06-17 18:54:12 +00:00
|
|
|
</FrameLayout>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-06-17 18:54:12 +00:00
|
|
|
<ImageView android:id="@+id/remove_image_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/conversation_attachment_close_circle"
|
|
|
|
android:layout_gravity="top|left"/>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-06-17 18:54:12 +00:00
|
|
|
</FrameLayout>
|
2013-06-28 03:57:27 +00:00
|
|
|
</ScrollView>
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-07-01 00:45:39 +00:00
|
|
|
<LinearLayout android:id="@+id/bottom_panel"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
2015-06-01 23:51:14 +00:00
|
|
|
|
2015-07-01 00:45:39 +00:00
|
|
|
<LinearLayout android:id="@+id/compose_bubble"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/sent_bubble">
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-07-01 00:45:39 +00:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiToggle
|
2013-06-28 03:57:27 +00:00
|
|
|
android:id="@+id/emoji_toggle"
|
2015-07-01 00:45:39 +00:00
|
|
|
android:layout_width="37dp"
|
|
|
|
android:layout_height="37dp"
|
2015-05-19 01:26:09 +00:00
|
|
|
android:layout_gravity="bottom"
|
2014-02-25 02:49:08 +00:00
|
|
|
android:background="@drawable/touch_highlight_background"
|
2015-07-01 00:45:39 +00:00
|
|
|
android:contentDescription="@string/conversation_activity__emoji_toggle_description" />
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-07-01 00:45:39 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ComposeText
|
|
|
|
style="@style/ComposeEditText"
|
2013-03-06 03:32:15 +00:00
|
|
|
android:id="@+id/embedded_text_editor"
|
2014-05-29 03:53:34 +00:00
|
|
|
android:layout_width="0dp"
|
2013-03-06 03:32:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-07-01 00:45:39 +00:00
|
|
|
android:minHeight="37dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
2015-02-18 01:55:18 +00:00
|
|
|
android:nextFocusForward="@+id/send_button"
|
2013-03-06 03:32:15 +00:00
|
|
|
android:nextFocusRight="@+id/send_button"
|
2015-07-01 00:45:39 +00:00
|
|
|
tools:hint="Send TextSecure message" />
|
2013-03-06 03:32:15 +00:00
|
|
|
|
2015-06-08 18:07:46 +00:00
|
|
|
<org.thoughtcrime.securesms.components.camera.HidingImageButton
|
|
|
|
android:id="@+id/quick_attachment_toggle"
|
|
|
|
android:layout_width="37dp"
|
|
|
|
android:layout_height="37dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:src="?quick_camera_icon"
|
|
|
|
android:background="@drawable/touch_highlight_background"
|
|
|
|
android:contentDescription="@string/conversation_activity__quick_attachment_drawer_toggle_description"
|
2015-07-11 01:45:55 +00:00
|
|
|
android:padding="10dp" />
|
2015-06-08 18:07:46 +00:00
|
|
|
</LinearLayout>
|
2015-04-16 05:38:33 +00:00
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AnimatingToggle
|
2015-07-01 00:45:39 +00:00
|
|
|
android:id="@+id/button_toggle"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:background="@drawable/circle_tintable"
|
|
|
|
android:layout_gravity="bottom">
|
2015-05-20 23:55:00 +00:00
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
<ImageButton
|
2015-07-01 00:45:39 +00:00
|
|
|
android:id="@+id/attach_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="@drawable/circle_touch_highlight_background"
|
|
|
|
android:src="@drawable/ic_attach_white_24dp"
|
|
|
|
android:contentDescription="@string/ConversationActivity_add_attachment"
|
|
|
|
android:nextFocusLeft="@+id/embedded_text_editor" />
|
2015-05-18 17:26:32 +00:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.SendButton
|
2015-07-01 00:45:39 +00:00
|
|
|
android:id="@+id/send_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:contentDescription="@string/conversation_activity__send"
|
|
|
|
android:nextFocusLeft="@+id/embedded_text_editor"
|
|
|
|
android:src="?conversation_transport_sms_indicator"
|
|
|
|
android:background="@drawable/circle_touch_highlight_background" />
|
2015-05-18 17:26:32 +00:00
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.components.AnimatingToggle>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
</LinearLayout>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
<Button android:id="@+id/unblock_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="20dp"
|
2015-06-13 20:43:45 +00:00
|
|
|
android:text="@string/ConversationActivity_unblock"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
<TextView android:id="@+id/space_left"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-08 22:29:05 +00:00
|
|
|
android:visibility="gone"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:text="160/160 (1)" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-07-19 21:22:03 +00:00
|
|
|
</RelativeLayout>
|
2015-07-13 22:45:14 +00:00
|
|
|
|
|
|
|
<ViewStub android:id="@+id/emoji_drawer_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/emoji_drawer"
|
|
|
|
android:layout="@layout/emoji_drawer_stub" />
|
2015-07-02 23:47:03 +00:00
|
|
|
</org.thoughtcrime.securesms.components.KeyboardAwareLinearLayout>
|
2015-07-13 22:45:14 +00:00
|
|
|
</org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer>
|