设置wrap_content
在RecycleView
支架上:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:background="@android:color/black">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView3"
android:textColor="@android:color/white"
android:textSize="17dp"
android:background="@drawable/bubbleblue170x140_2" />
</RelativeLayout>
但是里面的文字TextView
没有换行,在TextView里面的气泡里面有很多空白的地方。
如何强制在 iOS 版本中看到这样的内容:
在 Android 中使用9-patch
图像作为background
.