23 lines
818 B
XML
23 lines
818 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:clickable="true"
|
||
|
android:focusable="true"
|
||
|
android:background="?android:attr/selectableItemBackground"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/rvtextView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
<ImageButton
|
||
|
android:id="@+id/rvimagebutton"
|
||
|
android:contentDescription="@string/rvimagebuttondesc"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:src="@drawable/baseline_delete_24"
|
||
|
/>
|
||
|
</LinearLayout>
|