我正在尝试在具有约束布局的RecyclerView中设计聊天项目,但是无法正确设置弹性宽度。
Android约束布局:
<?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:id="@+id/receive_message_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/receive_message_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAlignment="textStart"
android:textColor="@color/receive_message_box_text"
android:background="@drawable/message_recieve"
android:padding="@dimen/message_box_padding"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@id/receive_time_label"
app:layout_constraintHorizontal_chainStyle="spread_inside"
/>
<TextView
android:id="@+id/receive_time_label"
android:layout_width="wrap_content"
app:layout_constrainedWidth="true"
android:layout_height="wrap_content"
android:text="timestamp"
android:textAlignment="textEnd"
android:layout_marginStart="@dimen/space_between_message_element"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/receive_message_label"
app:layout_constraintEnd_toEndOf="parent"
tools:ignore="HardcodedText"
/>
</android.support.constraint.ConstraintLayout>
效果很好,但是如果我显示更长的消息,则时间戳会被接收消息标签隐藏。
答案 0 :(得分:1)
来自anber的解决方案是好的,但是聊天内容textView的宽度会增加,即使内容很短也可能会变差。
我也做了非常相似的事情。最后,我将解决方案用作:
使用宽度= 0(match_constraint)的LinearLayout(或任何其他布局)替换TextView
将TextView移动为上述布局的子视图,并设置其width = wrap_content
因此无论如何时间都会显示,并且聊天内容的宽度仍然保持不变。
答案 1 :(得分:0)
UPD。我先前的解决方案不正确,如@ aimin-pan所述。
您应该为您设置消息textView
android:layout_width="wrap_content"
和app:layout_constrainedWidth="true"
,以及在时间textView左侧之前的右约束。
时间textView恰好在父对象的右上角对齐。
完整xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:text="Button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:background="#F00"
android:text="asdf asdf aasdf"
app:layout_constrainedWidth="true"
app:layout_constraintEnd_toStartOf="@+id/button"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 2 :(得分:0)
在您的时间TextView
删除此行
app:layout_constraintStart_toEndOf="@id/receive_message_label"
因此,时间标签不限于消息,而仅限于时间。
还将消息标签的宽度设置为0dp
android:layout_width="0dp"