2019-12-03 16:26:05 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2019-12-03 16:26:05 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/expiration_badge_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="11dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2020-11-09 09:12:28 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-12-03 16:26:05 -04:00
|
|
|
android:id="@+id/menu_badge_icon"
|
|
|
|
android:layout_width="14dp"
|
|
|
|
android:layout_height="14dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginEnd="3dp"
|
|
|
|
android:scaleType="fitCenter"
|
2021-02-09 11:42:57 -05:00
|
|
|
app:srcCompat="@drawable/ic_timer_conversation_badge" />
|
2019-12-03 16:26:05 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/expiration_badge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:gravity="center_horizontal|bottom"
|
|
|
|
android:paddingTop="1dp"
|
|
|
|
android:paddingBottom="3dp"
|
2021-02-09 11:42:57 -05:00
|
|
|
android:textColor="@color/signal_inverse_transparent_80"
|
2020-01-27 14:51:47 -04:00
|
|
|
android:textSize="14dp"
|
|
|
|
tools:text="1w"
|
|
|
|
tools:ignore="SpUsage" />
|
2019-12-03 16:26:05 -04:00
|
|
|
</LinearLayout>
|