을 사용하여 간단한 채팅 풍선을 구현하려고합니다 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 파일을 작성하고 다음 코드를 추가해야합니다. <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FB4382"/> <corners android:radius="10dip"/> </shape>