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"
แชทฟองมาจาก ในการติดตั้งคุณต้องสร้างไฟล์ chat_message_bubble.xml ในโฟลเดอร์ drawable จากนั้นเพิ่มรหัสนี้: <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FB4382"/> <corners android:radius="10dip"/> </shape>