1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-28 13:47:30 +00:00
BarInsta/app/src/main/res/layout/layout_dm_media.xml

20 lines
769 B
XML
Raw Normal View History

<?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
android:id="@+id/ivMediaPreview"
2020-09-26 18:42:35 +00:00
android:layout_gravity="center"
android:layout_width="wrap_content"
2020-09-26 09:14:06 +00:00
android:layout_height="wrap_content" />
<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/ic_video_24" />
</FrameLayout>