gpt4 book ai didi

android - ConstraintLayout - wrap_content + toRightOf 布局问题

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

我正在使用约束布局,我正在尝试使 textview 位于指南的右侧,并包装其宽度。但是 textview 没有使用约束"app:layout_constraintLeft_toRightOf="@id/guideline1" 出于某种原因

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout android:id="@+id/chat_model"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
xmlns:app="http://schemas.android.com/apk/res-auto">

<android.support.constraint.Guideline
android:id="@+id/guideline1"
android:layout_width="1dp"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent=".25" />

<TextView
android:id="@+id/texview_chatmodel_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bubble_user"
android:padding="8dp"
android:text="Username: aaaaaaaa aaaaa aaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
android:textColor="@color/colorBlack"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toRightOf="@id/guideline1"
android:gravity="right"/>

</android.support.constraint.ConstraintLayout>

当我将 textview 的宽度设置为 0 时它起作用

android:layout_width="0dp"

然而,这会导致短消息一直向左延伸到指南,从而产生空白空间的问题。

enter image description here

我怎样才能使消息布局位于指南的右侧,并包装其内容?

这就是我想要的:

enter image description here

我使用 wrap_width 和 horizo​​ntal_bias 来实现它

<TextView
android:id="@+id/textview_chatmodel_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bubble_user"
android:padding="8dp"
android:text="Username: aaaaaaaa "
android:textColor="@color/colorBlack"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toRightOf="@id/guideline1"
app:layout_constraintHorizontal_bias="1"
android:gravity="right"/>

但是这会导致不遵守Left_toRightOf 指南 约束的问题:

enter image description here

如何才能使消息布局位于指南的右侧,并包裹其内容?

最佳答案

如果 View 设置为 wrap_content,当其大小超过可用空间时它将忽略约束。为了避免这种情况,您必须添加此属性:

app:layout_constrainedWidth="true"

这是在 ConstraintLayout 版本 1.1 中添加的,在早期版本中,您需要将宽度设置为 match_constraint0dp 以产生类似的行为。

WRAP_CONTENT : enforcing constraints (Added in 1.1)
If a dimension is set to WRAP_CONTENT, in versions before 1.1 they will be treated as a literal dimension -- meaning, constraints will not limit the resulting dimension. While in general this is enough (and faster), in some situations, you might want to use WRAP_CONTENT, yet keep enforcing constraints to limit the resulting dimension. In that case, you can add one of the corresponding attribute:

app:layout_constrainedWidth=”true|false”
app:layout_constrainedHeight=”true|false”

关于android - ConstraintLayout - wrap_content + toRightOf 布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58659243/

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