我有包含文本的TextView。它有背景:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!\nEach line should be wrapped by background not whole text"
android:textColor="#000000"
android:textSize="24sp"
android:background="#FFFF00"
android:gravity="center_horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:padding="8dp"/>
现在,背景是包装整个文本。我希望它能单独包装每一行。现在我得到的结果显示在图像的左侧。我想实现右边的结果。
我会创建几个具有不同背景的TextView,但TextView会显示动态文本,这使得此解决方案不太好。
我的问题:如何用背景包装TextView的每一行?
答案 0 :(得分:2)
您可以使用SpannableString
SpannableString str = new SpannableString("Highlighted. Not highlighted.");
str.setSpan(new BackgroundColorSpan(Color.YELLOW), 0, 11, 0);
textView.setText(str);
如果你想要整个字符串突出显示
str.setSpan(new BackgroundColorSpan(Color.YELLOW), 0, str.length(), 0);