列表条目左滑显示删除按钮的控件有很多,可以说是已经很常见了,不过下面这种效果的应该不常见,类似iOS11的但又有一点细节的差异,和iOS版微信首页列表的差不多。
使用: itemView的布局文件仿照下面即可
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/itemVisibleFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/default_selector_recycler_item"
android:focusable="true"
android:clickable="true">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"</