<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
tools:ignore="MissingDefaultResource">
|
|
<com.lcjian.library.widget.ResizableImageView
|
android:id="@+id/iv_img"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginLeft="20dp"
|
android:layout_marginTop="-20dp"
|
android:layout_marginRight="20dp"
|
android:scaleType="fitXY" />
|
|
<ImageView
|
android:id="@+id/iv_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_below="@id/iv_img"
|
android:layout_centerHorizontal="true"
|
android:layout_marginTop="20dp"
|
android:src="@drawable/ic_close" />
|
|
</RelativeLayout>
|