我在layout_constraintVertical_weight上有一个小问题,我试图让两个TextView在分配的区域中共享可用的垂直空间,但是没有我的手动分配就不会发生。我尝试添加0dp来设置高度,但这没有用,但是可以完美地使用宽度。这是我的XML:

    <?xml version="1.0" encoding="utf-8"?>
    <!-- Layout for a single list item -->
    <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="@dimen/list_item_height"
        android:background="@color/tan_background">

        <ImageView
            android:id="@+id/image"
            android:layout_width="@dimen/list_item_height"
            android:layout_height="@dimen/list_item_height"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:id="@+id/miwok_text_view"
            android:layout_width="0dp"
            android:layout_height="44dp"
            android:background="@color/category_colors"
            app:layout_constraintLeft_toRightOf="@+id/image"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_weight="1"
            tools:text="text1" />

        <TextView
            android:id="@+id/default_text_view"
            android:layout_width="0dp"
            android:layout_height="44dp"
            android:background="@color/category_numbers"
            app:layout_constraintLeft_toRightOf="@+id/image"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintVertical_weight="1"
            tools:text="text2" />

    </android.support.constraint.ConstraintLayout>


这是布局外观的img:https://i.stack.imgur.com/ZOs9y.png

最佳答案

您必须创建一个layout_height为0dp的链才能工作

为了创建链,链中的所有视图都必须包含对该链中上一个和下一个项目的约束,并且第一个和最后一个必须与父项对齐

在这种情况下,为了使其正常工作,您必须执行以下操作:

 <TextView
        android:id="@+id/miwok_text_view"
        android:layout_width="0dp"

        --this should be 0dp otherwise it will not use weight
        android:layout_height="0dp"

        android:background="@color/category_colors"
        app:layout_constraintLeft_toRightOf="@+id/image"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"

        ---this is what you have to add--
        app:layout_constraintBottom_toTopOf="@+id/default_text_view"

        app:layout_constraintVertical_weight="1"
        tools:text="text1" />

    <TextView
        android:id="@+id/default_text_view"
        android:layout_width="0dp"
        -- again 0dp otherwise weight is ignored
        android:layout_height="0dp"

        android:background="@color/category_numbers"
        app:layout_constraintLeft_toRightOf="@+id/image"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"

        -- again add this to create a chain
        app:layout_constraintTop_toBottomOf="@+id/miwok_text_view"


        app:layout_constraintVertical_weight="1"
        tools:text="text2" />


经过上述更改后,砝码应该可以正常工作

08-16 13:44