Розглянемо такий файл макета:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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="match_parent">
<android.support.constraint.ConstraintLayout
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FF0000"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#0000FF"
android:padding="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintDimensionRatio="H,3:1"
tools:layout_editor_absoluteX="16dp" />
</android.support.constraint.ConstraintLayout>
</RelativeLayout>
Я не впевнений, як працює app: layout_constraintDimensionRatio. Я розумію, що відношення завжди буде шириною: висотою. Тож 3: 1 завжди змусить ImageView виглядати в 3 рази ширше висоти. Префікс H або W повідомляє ConstraintLayout, який розмір повинен відповідати співвідношенню. Якщо це H, це означає, що спочатку ширина буде обчислюватися з інших обмежень, а потім висота буде регулюватися відповідно до співвідношення сторін. Однак це результат макета:
Висота в 3 рази більша за ширину, що несподівано. Хто-небудь може пояснити мені, як обчислюються розміри щодо налаштування app: layout_constraintDimensionRatio?
androidx.constraintlayout.widget.ConstraintLayout