12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <merge xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools">
- <ImageView
- android:id="@+id/ImageView_image"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:adjustViewBounds="true"
- android:scaleType="centerInside"
- tools:ignore="contentDescription"/>
- <com.theartofdev.edmodo.cropper.CropOverlayView
- android:id="@+id/CropOverlayView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="invisible"/>
- <ProgressBar
- android:id="@+id/CropProgressBar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"/>
- </merge>
|