2018-09-11 07:56:29 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
2024-04-04 09:38:27 +00:00
|
|
|
|
2018-09-11 07:56:29 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2024-04-04 09:38:27 +00:00
|
|
|
|
2018-09-11 07:56:29 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/media_preview"
|
|
|
|
android:layout_width="@dimen/media_preview_size"
|
|
|
|
android:layout_height="@dimen/media_preview_size"
|
|
|
|
android:layout_centerInParent="true"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_margin="12dp"
|
|
|
|
android:background="?colorSurfaceContainerHighest"
|
|
|
|
android:scaleType="center" />
|
|
|
|
|
2018-09-11 07:56:29 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/delete_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2018-09-11 07:56:29 +00:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:src="@drawable/ic_cancel_24dp" />
|
2018-09-11 07:56:29 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
</layout>
|