gpt4 book ai didi

android - 使用 layout_constraintVertical_weight 分布 TextView

转载 作者:行者123 更新时间:2023-11-29 14:44:36 27 4
gpt4 key购买 nike

我在使用 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:/image/ZOs9y.png

最佳答案

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

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

在你的情况下,为了让它工作,你必须做这样的事情:

 <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" />

经过上述更改权重应该可以正常工作

关于android - 使用 layout_constraintVertical_weight 分布 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44052354/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com