インライン削除ボタンを使用するカスタムの使用に取り組んでいますが、行が 1 行を超えるListView
とボタンを垂直に伸ばすことができません。ListView
テキストがボタンの境界を尊重するようにするのにも少し問題がありますが、それは以前は機能していたので、簡単に修正できると思います。
私が使用しているコードは次のとおりです。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txt_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:gravity="center_vertical"
android:textStyle="bold"
android:textSize="22sp"
android:textColor="#000000"
android:textIsSelectable="false"
android:layout_margin="8dp" />
<Button
android:id="@+id/btn_delete"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:background="@drawable/delete"
android:contentDescription="@string/delete"/>
</RelativeLayout>
そして、次のようになります。