幅に合わせて x 軸で繰り返したい画像があります。
繰り返しセクションヘッダー.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" />
ここまでは順調ですね。これを背景として設定しました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の高さをコンテンツをラップするようにする)