I want to develop a list view that when swiped left to right - displays in the left corner an accept (true) icon (non clickable - show just a color change when swiping left to right), like the following screen shot:
When I swipe from left to right it will accept (calling 'accept' API), and when I swipe right to left it will display something like this:
This is done in iOS, but I can't find how to do this in Android, I tried googling but couldn't find exactly what I want.
I tried the following example: http://www.tutecentral.com/android-swipe-listview/
but in that example, when I swipe left to right and right to left, the same onOpened(..) method is called so it's confusing to know when to call accept and when to call reject API because the same method is called on any type of swipe.
and I also want the accept (on left side) and reject (on right side) images to display only when I swipe left-right or right-left, but when I take the finger up they must disappear and the entire ListView should be displayed (never show both side images at the same time).
So any one please help me to understand how to do this.
My question is somewhat confusing but I don't know how to explain the entire animation so I tried to explain like the above.
If any one can help me it would be very appreciated.
Solution number 1 :
You Have to do like following to reach "near" to your functionality,
Wrap the adapter of your ListView
Like following :
Create a background layout for each swipe direction
Like Following:
You got both libraries and Example from the here : https://github.com/wdullaer/SwipeActionAdapter
This will not exact like you want, but i hope this will help you so much to fulfilled your functionality.
Solution number 2 :
Solution 2 is about Changing some code in your Used code : http://www.tutecentral.com/android-swipe-listview/
i had try your code from the link http://www.tutecentral.com/android-swipe-listview/ and changing some code and successfully solve your problem(your confusion) about onOpened(..) method ( called left to right and vice versa )
First change :
custom_row.xml layout file has three button swipe_button1 to 3 , remove middle of them.
Copy paste following code for remain two button :
Remains code same for this layout.
Second change :
So now your accept and reject and list code is ready , now discuss about onOpened(..) method.
Confusion solution 1- You told , your onOpend(...) method called same both left to right and vice-verse
-> just to change following :
Confusion solution 2 when i take finger up it will must display entire listview or listview sides should retain it corners so its not working
-> i already answered it in above
called swipelistview.closeAnimate(position); in both if else, it hide left accept and right reject image when your your swipe left and right over.
So final code is following :
Entire cutom_row.xml layout
Entire MainActivity.java
Other code and library remains same, It helpful to you and other also, So enjoy.