A swipe menu for RecyclerView, low coupling, can fast rapid integration into your project
dependencies {
compile 'com.tubb.smrv:swipemenu-recyclerview:3.0.3'
}
Use SwipeMenuLayout, we use SwipeMenuLayout ViewGroup to combine item content view and swipe menu
<?xml version="1.0" encoding="utf-8"?>
<com.tubb.smrv.SwipeMenuLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- item content view, the id must be (smContentView) -->
<include android:id="@id/smContentView" layout="@layout/item_simple_content"/>
<!-- item swipe menu, the id must be (smMenuView) -->
<include android:id="@id/smMenuView" layout="@layout/item_simple_menu"/>
</com.tubb.smrv.SwipeMenuLayout>
Just use our custom RecyclerView
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}"
android:id="@+id/swipeRefreshLayout">
<com.tubb.smrv.SwipeMenuRecyclerView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
More details please see the demo project.
You can on or off swipe feature, and set open/close Interpolator in onBindViewHolder(RecyclerView.ViewHolder vh, int position) method
itemView.setSwipeEnable(swipeEnable);
itemView.setOpenInterpolator(mRecyclerView.getOpenInterpolator());
itemView.setCloseInterpolator(mRecyclerView.getCloseInterpolator());
We add anim_duration attr to custom swipe animation duration, default is 500ms
<?xml version="1.0" encoding="utf-8"?>
<com.tubb.smrv.SwipeMenuLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:swipemenu="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
swipemenu:anim_duration="300">
</com.tubb.smrv.SwipeMenuLayout>
Support LinearLayoutManager、GridLayoutManager and StaggeredGridLayoutManager for RecyclerView
On-off swipe ability
Not intercept item touch event
Good expansibility, we only override onInterceptTouchEvent(MotionEvent ev) method of RecyclerView