2015-03-17 21:01:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-26 17:27:44 +00:00
|
|
|
<merge
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2015-03-17 21:01:37 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/thumbnail_image"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:clickable="false"
|
|
|
|
android:longClickable="false"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:contentDescription="@string/conversation_item__mms_image_description" />
|
2015-03-17 21:01:37 +00:00
|
|
|
|
2018-11-09 07:33:37 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/thumbnail_caption_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="6dp"
|
2019-03-15 00:01:23 +00:00
|
|
|
android:src="@drawable/ic_caption_28"
|
2018-11-09 07:33:37 +00:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/play_overlay"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:background="@drawable/circle_white"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:longClickable="false"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2016-12-11 21:37:27 +00:00
|
|
|
|
2018-06-26 17:27:44 +00:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="19dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_marginStart="17dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:tint="@color/core_blue"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
app:srcCompat="@drawable/triangle_right" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/transfer_controls_stub"
|
2019-04-17 14:21:30 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout="@layout/transfer_controls_stub" />
|
2015-06-27 03:14:51 +00:00
|
|
|
|
|
|
|
</merge>
|