2017-01-20 17:30:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-03-20 18:27:11 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-01-20 17:30:08 +00:00
|
|
|
android:id="@+id/image_view"
|
2018-03-20 18:27:11 +00:00
|
|
|
android:layout_width="@dimen/media_bubble_default_dimens"
|
|
|
|
android:layout_height="@dimen/media_bubble_default_dimens"
|
2017-01-20 17:30:08 +00:00
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:contentDescription="@string/conversation_item__mms_image_description"
|
|
|
|
android:visibility="gone"
|
2018-03-20 18:27:11 +00:00
|
|
|
app:minWidth="@dimen/media_bubble_min_width"
|
|
|
|
app:maxWidth="@dimen/media_bubble_max_width"
|
|
|
|
app:minHeight="@dimen/media_bubble_min_height"
|
|
|
|
app:maxHeight="@dimen/media_bubble_max_height"
|
2017-01-20 17:30:08 +00:00
|
|
|
tools:src="@drawable/ic_video_light"
|
|
|
|
tools:visibility="visible" />
|