2021-05-31 14:29:11 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-12-03 07:51:21 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-05-31 14:29:11 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-12-03 07:51:21 +02:00
|
|
|
android:gravity="center"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingHorizontal="@dimen/massive_spacing"
|
2021-12-03 07:51:21 +02:00
|
|
|
android:paddingVertical="@dimen/medium_spacing">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/dateBreakTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:textSize="@dimen/very_small_font_size"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/date/hhmm" />
|
2021-05-31 14:29:11 +10:00
|
|
|
|
2021-06-01 15:43:37 +10:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/iconImageView"
|
2021-06-22 15:55:32 +10:00
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
2021-06-30 10:30:10 +10:00
|
|
|
android:layout_marginBottom="@dimen/small_spacing"
|
2021-12-03 07:51:21 +02:00
|
|
|
app:tint="@color/text"
|
|
|
|
tools:src="@drawable/ic_timer" />
|
2021-06-01 15:43:37 +10:00
|
|
|
|
2021-05-31 14:29:11 +10:00
|
|
|
<TextView
|
2021-06-01 13:01:03 +10:00
|
|
|
android:id="@+id/textView"
|
2021-06-25 14:06:53 +10:00
|
|
|
android:layout_width="match_parent"
|
2021-05-31 14:29:11 +10:00
|
|
|
android:layout_height="wrap_content"
|
2021-12-03 07:51:21 +02:00
|
|
|
android:gravity="center"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:textColor="@color/text"
|
2021-12-03 07:51:21 +02:00
|
|
|
android:textSize="@dimen/very_small_font_size"
|
2021-06-22 15:55:32 +10:00
|
|
|
android:textStyle="bold"
|
2021-12-03 07:51:21 +02:00
|
|
|
tools:text="@string/MessageRecord_you_disabled_disappearing_messages" />
|
2021-05-31 14:29:11 +10:00
|
|
|
|
|
|
|
</LinearLayout>
|