aboutsummaryrefslogtreecommitdiff
path: root/imagepicker/src/main/res/layout/kau_iitem_image.xml
diff options
context:
space:
mode:
Diffstat (limited to 'imagepicker/src/main/res/layout/kau_iitem_image.xml')
-rw-r--r--imagepicker/src/main/res/layout/kau_iitem_image.xml16
1 files changed, 10 insertions, 6 deletions
diff --git a/imagepicker/src/main/res/layout/kau_iitem_image.xml b/imagepicker/src/main/res/layout/kau_iitem_image.xml
index 824ae7b..22cc998 100644
--- a/imagepicker/src/main/res/layout/kau_iitem_image.xml
+++ b/imagepicker/src/main/res/layout/kau_iitem_image.xml
@@ -1,11 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="80dp"
- android:layout_height="80dp">
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<ImageView
android:id="@+id/kau_image"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:scaleType="centerCrop"
+ android:background="#f0f"
+ app:layout_constraintDimensionRatio="1:1" />
-</FrameLayout> \ No newline at end of file
+</android.support.constraint.ConstraintLayout> \ No newline at end of file