答案 0 :(得分:0)
将邮件宽度更改为android:layout_width=wrap_content
。分享您的message xml
。
答案 1 :(得分:0)
使用填充为文本提供适当的呼吸空间。并且不要使用静态尺寸。这样做
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
android:text="Your Text"
android:textColor="@color/white"
android:textSize="15sp"
android:background="@drawable/background"/>