в чем смысл android: layout_width = "0dp", когда нет атрибута `weight`? - PullRequest
0 голосов
/ 07 ноября 2018

У меня есть этот макет:

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlayGoogleMaterialIcons">

  <LinearLayout
      android:layout_height="wrap_content"
      android:layout_width="0dp">

...

в чем смысл android: layout_width = "0dp" не в потомке LinearLayout

в чем смысл android: layout_width = "0dp", когда нет атрибута weight?

1 Ответ

0 голосов
/ 07 ноября 2018

для потомков ConstraintLayout, если вы установили ограничения, тогда 0dp - для match_constraint (принимает полную ширину или полную высоту)

Использование 0dp, что эквивалентно "MATCH_CONSTRAINT" https://developer.android.com/reference/android/support/constraint/ConstraintLayout

Пример

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="match_parent">

    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        tools:text="text1" />

    <TextView
        android:id="@+id/tv_2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toStartOf="@id/tv_3"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tv_1"
        tools:text="text2" />

    <TextView
        android:id="@+id/tv_3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@id/tv_2"
        app:layout_constraintTop_toBottomOf="@id/tv_1"
        tools:text="text3" />
</android.support.constraint.ConstraintLayout>

enter image description here

в приведенном выше коде (и изображении) вы видите, что text1 TextView width - это ширина, необходимая для написания текста text1

для text2 и text3 TextView требуется вся ширина, деленная на 2, как говорят ограничения

...