У меня есть ShapableImageView и мне нужно ограничить его с помощью атрибутов maxHeight и maxWidth. android:adjustViewBounds="true" - не помогает. Если положить большую по размерам картинку - ShappableImageView растягивается выше пределов обозначенных в maxWidith и maxHeight.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="@dimen/grid_12"
android:maxHeight="@dimen/grid_12"
android:background="@drawable/img"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:shapeAppearanceOverlay="@style/Circular.Corner_20" />
</androidx.constraintlayout.widget.ConstraintLayout>
Если добавить android:adjustViewBounds - ShapableImageView становится прямоугольным как оригинальная картинка, а мне нужен квадратный ShapableImageView