テキストをストロークさせたい。カスタムのストライクライン画像を使用しています。これまでのところ、私はこれを行いました:
<RelativeLayout
android:id="@+id/title_container"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFFF0000">
<TextView
android:id="@+id/title"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:duplicateParentState="true"
android:singleLine="true"
android:ellipsize="end"
android:textColor="@color/title_text"
android:textSize="18dp"
android:background="#FF00FF00"
/>
<ImageView
android:id="@+id/title_strike_through"
android:contentDescription="@null"
android:layout_centerVertical="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:duplicateParentState="true"
android:src="@drawable/title_strike"/>
</RelativeLayout>
現在の問題は、title_containerレイアウトがウィンドウの幅全体に広がり、その結果、title_strike_throughも伸びることです。すべきではありません!必要なのは、title_strike_throughをテキスト全体に拡大することだけです。私は何をすべきか?