diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-29 22:20:35 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-02-29 22:20:35 -0800 |
commit | d84ecd1fa6b103b5afaa1ecaff35738a453b8925 (patch) | |
tree | e54e5788b9dcad79d9786ded9af1281eba44390a /mediapicker/src | |
parent | 33e117ae643bf7adc5f31cf5b808e275e0455eea (diff) | |
download | kau-d84ecd1fa6b103b5afaa1ecaff35738a453b8925.tar.gz kau-d84ecd1fa6b103b5afaa1ecaff35738a453b8925.tar.bz2 kau-d84ecd1fa6b103b5afaa1ecaff35738a453b8925.zip |
Fix lint issue
Diffstat (limited to 'mediapicker/src')
-rw-r--r-- | mediapicker/src/main/res/layout/kau_iitem_image_basic.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediapicker/src/main/res/layout/kau_iitem_image_basic.xml b/mediapicker/src/main/res/layout/kau_iitem_image_basic.xml index b89e41d..939f139 100644 --- a/mediapicker/src/main/res/layout/kau_iitem_image_basic.xml +++ b/mediapicker/src/main/res/layout/kau_iitem_image_basic.xml @@ -1,10 +1,12 @@ <?xml version="1.0" encoding="utf-8"?> <ca.allanwang.kau.ui.views.MeasuredImageView 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:id="@+id/kau_image" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="2dp" android:foreground="@drawable/kau_selectable_white" android:scaleType="centerCrop" - app:relativeHeight="1" />
\ No newline at end of file + app:relativeHeight="1" + tools:ignore="UnusedAttribute" />
\ No newline at end of file |