2020-08-20 13:05:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-09-11 16:44:34 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2020-08-20 13:05:23 +00:00
|
|
|
android:id="@+id/ivMediaPreview"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-11 16:44:34 +00:00
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:maxHeight="@dimen/dm_media_img_max_height" />
|
2020-08-20 13:05:23 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/typeIcon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="end|top"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
app:srcCompat="@drawable/video" />
|
|
|
|
</FrameLayout>
|