dialog_photo_view.xml 1.02 KB
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:background="#888"
    tools:ignore="UseCompoundDrawables,HardcodedText,SmallSp,ContentDescription">

    <com.github.chrisbanes.photoview.PhotoView
        android:id="@+id/photoView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ImageView
        android:id="@+id/btnClose"
        android:src="@drawable/svg_close_24"
        android:padding="8dp"
        android:background="@drawable/shape_circle"
        android:backgroundTint="#88FFFFFF"
        android:layout_gravity="end"
        android:layout_marginTop="40dp"
        android:layout_marginEnd="16dp"
        android:layout_width="28dp"
        android:layout_height="28dp"/>

</FrameLayout>