我有一个要在 x 轴上重复以匹配宽度的图像。
repeating_section_header.xml :
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/table_section_header_light"
android:tileMode="repeat" />
到目前为止,一切都很好。现在我将其设置为 a 的背景TextView
:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row_headline_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/repeating_section_header"
android:gravity="left|center_vertical"
android:textColor="@color/white"
android:textSize="14sp"
android:textStyle="bold"/>
但是现在 TextViews 的高度是 的高度@drawable/table_section_header_light
,即使我已经将 TextViews 的高度设置为wrap_content
。
知道如何解决这个问题(使 TextViews 高度包装内容)