我正在使用一个使用内联删除按钮的自定义,但当行超过 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>
它看起来像这样: