mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
a4c17e5325
// FREEBIE
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<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" />
|
|
|
|
<ImageView android:id="@+id/play_overlay"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:clickable="false"
|
|
android:longClickable="false"
|
|
android:src="@drawable/ic_play_circle_outline_white_48dp"
|
|
android:tint="#77ffffff"
|
|
android:tintMode="src_in"
|
|
android:visibility="gone"/>
|
|
|
|
<ViewStub android:id="@+id/transfer_controls_stub"
|
|
android:layout_width="70dp"
|
|
android:layout_height="70dp"
|
|
android:layout_gravity="center"
|
|
android:layout="@layout/transfer_controls_stub" />
|
|
|
|
</merge>
|