2015-11-24 15:06:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-08-16 03:23:56 +00:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2015-11-24 15:06:41 +00:00
|
|
|
|
2018-07-12 23:03:32 +00:00
|
|
|
<ImageView
|
2018-06-26 17:27:44 +00:00
|
|
|
android:id="@+id/pending_indicator"
|
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginEnd="2dp"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_gravity="center_vertical|end"
|
|
|
|
android:src="@drawable/ic_delivery_status_sending"
|
|
|
|
android:visibility="gone" />
|
2015-11-24 15:06:41 +00:00
|
|
|
|
|
|
|
<ImageView android:id="@+id/sent_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|end"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:src="@drawable/ic_delivery_status_sent"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingStart="2dp"
|
2015-11-24 15:06:41 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:contentDescription="@string/conversation_item_sent__delivered_description" />
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/delivered_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|end"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:src="@drawable/ic_delivery_status_delivered"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingStart="2dp"
|
2015-11-24 15:06:41 +00:00
|
|
|
android:visibility="gone"
|
2016-08-16 03:23:56 +00:00
|
|
|
android:contentDescription="@string/conversation_item_sent__delivered_description"
|
2017-09-16 05:38:53 +00:00
|
|
|
tools:visibility="gone"/>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/read_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|end"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:src="@drawable/ic_delivery_status_read"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingStart="2dp"
|
2017-09-16 05:38:53 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:contentDescription="@string/conversation_item_sent__message_read"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:tint="@color/core_blue"
|
2016-08-16 03:23:56 +00:00
|
|
|
tools:visibility="visible"/>
|
2015-11-24 15:06:41 +00:00
|
|
|
|
|
|
|
</merge>
|