This is a small library that can be used to implement a "swipe-to-reply" functionality in your Android apps. Made on the basis of https://github.com/izjumovfs/SwipeToReply, in contrast to which, the swipe is to the left, which is much more convenient and familiar.
Here's what it looks like:
How to
To get a Git project into your build:
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.Std1o:SwipeToReply:0.0.1'
}
SwipeController controller = new SwipeController(context, new ISwipeControllerActions() {
@Override
public void onSwipePerformed(int position) {
// Here you can handle the swipe-to-reply event
}
});
ItemTouchHelper itemTouchHelper = new ItemTouchHelper(controller);
itemTouchHelper.attachToRecyclerView(recyclerView);