Співвідношення сторін ConstraintLayout


79

Розглянемо такий файл макета:

<?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?

Відповіді:


130

Ваше розуміння того, як app:layout_constraintDimensionRatioпрацює, є правильним. Якщо ви встановите, app:layout_constraintDimensionRatio="H,3:1"це означає, що спочатку ширина буде обчислюватися з інших обмежень, а потім висота буде регулюватися відповідно до співвідношення сторін. Єдина проблема з вашою реалізацією полягає в тому, що ви додали app:layout_constraintBottom_toBottomOf="parent"до ImageView, так що вона спричинила app:layout_constraintDimensionRatioігнорування.

Ось макет для розміру ImageView у співвідношенні сторін 3: 1:

<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"
    android:background="#FF0000">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="16dp"
        android:background="#0000FF"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintDimensionRatio="H,3:1" />

</android.support.constraint.ConstraintLayout>

і ось подання результатів:

ImageView у співвідношенні сторін 3: 1


З androidx цеandroidx.constraintlayout.widget.ConstraintLayout
oleynikd

19

В основному, ми маємо

layout_constraintDimensionRatio(width:height)

ПРИКЛАД

<!-- button which have width = it's content and height = 1/2 width -->
<Button
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        app:layout_constraintStart_toStartOf="parent" <!-- I still think that we don't need this attribute but I when I don't add this, constraint not working -->
        android:text="Button TEST RATIO 1"
        app:layout_constraintDimensionRatio="2:1" />

Вихідні дані
введіть тут опис зображення

<!-- button which have width = it's content and height = 1/2 width -->
<Button
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        app:layout_constraintStart_toStartOf="parent"
        android:text="Button TEST RATIO 2"
        app:layout_constraintDimensionRatio="2" /> <!-- 2 here <=> 2:1 <=> 2/1 (1:1 <=> 1, 1/2 <=> 0.5, ....) ->

Вихідні дані
введіть тут опис зображення

<!-- button which have width = match_parent and height = 1/2 width -->
<Button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:text="Button TEST RATIO 3"
        app:layout_constraintDimensionRatio="2" />

Вихідні дані
введіть тут опис зображення

<!-- button which have width = match constraint and height = 1/2 width -->
<Button
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button TEST RATIO 4"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintDimensionRatio="2" />

Вихідні дані
введіть тут опис зображення

ДЕМО: https://github.com/PhanVanLinh/AndroidConstraintLayoutRatio


7

Погляньте на ці ImageViewвластивості:

    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"

Ці властивості перевизначають те, layout_constraintDimensionRatioчерез що значення ImageViewобмежується нижньою, верхньою та лівою частиною основного батька, що призводить до Viewзайняття лівої, верхньої та нижньої частин головного екрана.

    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"

Це було б одним із рішень. Ви можете пропустити, layout_constraintBottom_toBottomOfякщо ви хочете, щоб Вигляд відображався зверху або навпаки. Напевно, було б найкраще усунути всі перераховані вище обмеження, крім layout_constraintDimensionRatio, що було б найбільш рекомендованим рішенням.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.