aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/item_compose_media.xml
blob: 516ef8c5c951703161d8adf208f7eaf9bf359612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp">

    <ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ImageButton
        android:id="@+id/delete"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="end|top"
        android:background="?selectableItemBackgroundBorderless"
        android:src="@drawable/ic_clear_black_24dp"
        android:tint="?android:textColorSecondary" />
</FrameLayout>