2015-01-15 13:35:35 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-09-30 13:00:06 -03:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-16 18:12:14 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/group_media_card"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2015-03-24 13:37:57 -07:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:paddingTop="24dp"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:paddingBottom="32dp">
|
2020-06-16 18:12:14 -04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp">
|
2020-06-16 18:12:14 -04:00
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/message_details_header_message_view_update"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout="@layout/conversation_item_update"/>
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/message_details_header_message_view_sent_multimedia"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout="@layout/conversation_item_sent_multimedia"/>
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/message_details_header_message_view_received_multimedia"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
tools:visibility="visible"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout="@layout/conversation_item_received_multimedia"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2015-03-24 13:37:57 -07:00
|
|
|
|
2018-10-11 16:45:22 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/dsl_settings_gutter"
|
|
|
|
android:layout_marginEnd="@dimen/dsl_settings_gutter"
|
|
|
|
tools:visibility="visible">
|
2018-10-11 16:45:22 -07:00
|
|
|
|
2019-11-01 10:18:16 -03:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2020-06-16 18:12:14 -04:00
|
|
|
android:id="@+id/message_details_header_error_text"
|
2019-11-01 10:18:16 -03:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:padding="5dp"
|
|
|
|
tools:visibility="visible"
|
|
|
|
android:text="@string/message_details_header__issues_need_your_attention"
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_info_outline_message_details_24"
|
|
|
|
android:gravity="center_vertical" />
|
2018-10-11 16:45:22 -07:00
|
|
|
|
|
|
|
<Button
|
2020-06-16 18:12:14 -04:00
|
|
|
android:id="@+id/message_details_header_resend_button"
|
2018-10-11 16:45:22 -07:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="38sp"
|
|
|
|
style="@style/InfoButton"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:paddingStart="10dp"
|
|
|
|
android:paddingEnd="10dp"
|
2018-10-11 16:45:22 -07:00
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:drawableStart="@drawable/ic_refresh_white_18dp"
|
2018-10-11 16:45:22 -07:00
|
|
|
android:text="@string/message_recipients_list_item__resend"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2015-03-24 13:37:57 -07:00
|
|
|
|
2020-06-16 18:12:14 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/message_details_header_message_metadata"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_marginStart="@dimen/dsl_settings_gutter"
|
|
|
|
android:layout_marginEnd="@dimen/dsl_settings_gutter"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
2021-08-30 17:52:46 -03:00
|
|
|
android:id="@+id/message_details_header_sent_time"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
tools:text="@string/message_details_header__sent"
|
2020-06-16 18:12:14 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
2021-08-30 17:52:46 -03:00
|
|
|
android:id="@+id/message_details_header_received_time"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
tools:text="@string/message_details_header__received"
|
2020-06-16 18:12:14 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-25 16:49:48 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/message_details_header_sent_time" />
|
2020-06-16 18:12:14 -04:00
|
|
|
|
|
|
|
<TextView
|
2021-08-30 17:52:46 -03:00
|
|
|
android:id="@+id/message_details_header_expires_in"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
tools:text="@string/message_details_header__disappears"
|
2020-06-16 18:12:14 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-25 16:49:48 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/message_details_header_received_time" />
|
2020-06-16 18:12:14 -04:00
|
|
|
|
|
|
|
<TextView
|
2021-08-30 17:52:46 -03:00
|
|
|
android:id="@+id/message_details_header_transport"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
tools:text="@string/message_details_header__via"
|
2020-06-16 18:12:14 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-25 16:49:48 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/message_details_header_expires_in" />
|
2020-06-16 18:12:14 -04:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
2015-03-24 13:37:57 -07:00
|
|
|
</LinearLayout>
|
2020-06-16 18:12:14 -04:00
|
|
|
|
2021-08-30 17:52:46 -03:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:background="@color/signal_inverse_transparent_05" />
|
|
|
|
|
2021-09-30 13:00:06 -03:00
|
|
|
</FrameLayout>
|