2020-06-16 16:00:24 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-05-27 16:26:11 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-06-16 16:00:24 -04:00
|
|
|
android:id="@+id/group_media_card"
|
|
|
|
android:layout_width="match_parent"
|
2022-05-27 16:26:11 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardBackgroundColor="?android:attr/windowBackground"
|
|
|
|
app:cardCornerRadius="0dp"
|
|
|
|
app:cardElevation="0dp">
|
2020-06-16 16:00:24 -04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:paddingStart="@dimen/dsl_settings_gutter"
|
2022-06-06 12:12:03 -03:00
|
|
|
android:paddingTop="16dp"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:paddingEnd="@dimen/dsl_settings_gutter"
|
|
|
|
android:paddingBottom="12dp">
|
2020-06-16 16:00:24 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/recipient_header_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="start"
|
2022-06-06 12:12:03 -03:00
|
|
|
android:textAppearance="@style/Signal.Text.TitleSmall"
|
2020-06-16 16:00:24 -04:00
|
|
|
tools:text="Read by" />
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.DeliveryStatusView
|
|
|
|
android:id="@+id/recipient_header_delivery_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-05-27 16:26:11 -03:00
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
app:iconColor="@color/signal_inverse_primary" />
|
2020-06-16 16:00:24 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|