crop_image_view.xml 881 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <merge xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <ImageView
  5. android:id="@+id/ImageView_image"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:adjustViewBounds="true"
  9. android:scaleType="centerInside"
  10. tools:ignore="contentDescription"/>
  11. <com.theartofdev.edmodo.cropper.CropOverlayView
  12. android:id="@+id/CropOverlayView"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:visibility="invisible"/>
  16. <ProgressBar
  17. android:id="@+id/CropProgressBar"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center"/>
  21. </merge>