2012-07-19 21:22:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-07-02 23:47:03 +00:00
|
|
|
|
2015-07-24 20:22:28 +00:00
|
|
|
<org.thoughtcrime.securesms.components.InputAwareLayout
|
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-07-24 20:22:28 +00:00
|
|
|
android:id="@+id/layout_container"
|
2015-04-16 05:38:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-07-24 20:22:28 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer
|
|
|
|
android:id="@+id/quick_attachment_drawer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-24 19:47:50 +00:00
|
|
|
android:orientation="vertical">
|
2015-07-24 20:22:28 +00:00
|
|
|
|
2015-11-24 19:47:50 +00:00
|
|
|
<LinearLayout android:id="@+id/conversation_container"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-24 20:22:28 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="?attr/actionBarSize"
|
2015-11-18 22:52:26 +00:00
|
|
|
android:gravity="bottom"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:clipChildren="false">
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-01-19 02:46:40 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/reminder_stub"
|
|
|
|
android:layout="@layout/conversation_activity_reminderview_stub"
|
|
|
|
android:inflatedId="@+id/reminder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
2015-10-14 04:44:01 +00:00
|
|
|
|
2014-12-15 20:25:55 +00:00
|
|
|
<FrameLayout android:id="@+id/fragment_content"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-24 20:22:28 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
2017-01-18 20:27:48 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/attachment_editor_stub"
|
|
|
|
android:inflatedId="@+id/attachment_editor"
|
|
|
|
android:layout="@layout/conversation_activity_attachment_editor_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
2015-07-30 20:20:21 +00:00
|
|
|
|
2015-11-18 22:52:26 +00:00
|
|
|
<include layout="@layout/conversation_input_panel"/>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-07-30 20:20:21 +00:00
|
|
|
<Button android:id="@+id/unblock_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="20dp"
|
|
|
|
android:text="@string/ConversationActivity_unblock"
|
|
|
|
android:visibility="gone"/>
|
2015-06-09 14:37:20 +00:00
|
|
|
|
2016-11-20 23:56:47 +00:00
|
|
|
<Button android:id="@+id/make_default_sms_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="20dp"
|
|
|
|
android:text="@string/conversation_activity__enable_signal_for_sms"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2015-07-30 20:20:21 +00:00
|
|
|
<TextView android:id="@+id/space_left"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
2015-07-31 17:15:37 +00:00
|
|
|
android:background="?android:windowBackground"
|
2015-07-30 20:20:21 +00:00
|
|
|
android:text="160/160 (1)" />
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-07-24 20:22:28 +00:00
|
|
|
|
2017-01-19 19:31:41 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/emoji_drawer_stub"
|
|
|
|
android:layout="@layout/conversation_activity_emojidrawer_stub"
|
|
|
|
android:inflatedId="@+id/emoji_drawer"
|
2015-07-24 20:22:28 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-01-19 19:31:41 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-07-24 20:22:28 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
2015-07-13 22:45:14 +00:00
|
|
|
</org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer>
|
2015-07-24 20:22:28 +00:00
|
|
|
</org.thoughtcrime.securesms.components.InputAwareLayout>
|