我正在尝试使用来实现一个简单的聊天气泡ConstraintLayout
。这是我要实现的目标:
但是,wrap_content
似乎不能在约束条件下正常工作。它尊重边距,但不能正确计算可用空间。这是我的布局:
<?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="wrap_content">
<TextView
android:id="@+id/chat_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHorizontal_bias="0"
tools:background="@drawable/chat_message_bubble"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum."
android:layout_marginStart="64dp"
android:layout_marginLeft="64dp"
android:layout_marginEnd="32dp"
android:layout_marginRight="32dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp" />
</android.support.constraint.ConstraintLayout>
如下所示:
我正在使用com.android.support.constraint:constraint-layout:1.0.0-beta4
。
难道我做错了什么?它是错误还是只是非直觉的行为?ConstraintLayout
我可以使用来实现正确的行为吗(我知道我可以使用其他布局,我正在ConstrainLayout
专门询问)。
tools:background="@drawable/chat_message_bubble"
。要实现它,您必须在drawable文件夹中创建chat_message_bubble.xml文件,然后添加以下代码: <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FB4382"/> <corners android:radius="10dip"/> </shape>