EnhancedListView icon indicating copy to clipboard operation
EnhancedListView copied to clipboard

[Important] Deprecation Notice

Open timroes opened this issue 11 years ago • 8 comments

I added a deprecation notice in favor of the new RecyclerView coming soon in the support library.

Please make sure to read the updated README file.

timroes avatar Sep 07 '14 19:09 timroes

does recyclerview support swipe to dismiss? I didn't see anything that mentioned it...

kenyee avatar Sep 22 '14 19:09 kenyee

No. Recycler view doesn't support swipe to dismiss on its own. But any library that works on ListView should be ported to the new RecyclerView as soon as possible (imho) to (a) benefit from all the other features Recycler View offers and (b) not relying on "old" techniques. E.g. recycler view has a very different support for animations, that should be leveraged for that kind of library.

timroes avatar Sep 22 '14 19:09 timroes

Do you plan to implement a swipe-to-dismiss to the RecyclerView? I'm finding that setting an onClickListener will cancel out the dismiss listener. Very frustrating.

Binghammer avatar Oct 23 '14 00:10 Binghammer

I don't understand why its not built in Recyclerview. It is implemented in iOS for a long time now!

joan38 avatar Oct 26 '14 18:10 joan38

@joan38: good question and I am not sure if it might not come in the future. Thats one of the advantages of having the stuff in the support library, they can update it some time to e.g. add new layout managers or implement a feature like that.

@Binghammer unfortunately I don't see that I will have the time to completely rewrite this. I hope someone else does so and perhaps there is some useful code in this library that can be used.

timroes avatar Nov 21 '14 15:11 timroes

@timroes @Binghammer I forked this project and started to use the RecyclerView https://github.com/LucioC/EnhancedList . I already have a functional version, but needs some review. I appreciate feedbacks. I'm still using the old animations, maybe this need to be improved.

LucioC avatar Mar 11 '15 23:03 LucioC

This project might help: https://github.com/rahulrj/Swipe_RecyclerView

joan38 avatar Mar 12 '15 09:03 joan38

Few others here: https://github.com/Malinskiy/SuperRecyclerView https://github.com/ismoli/DynamicRecyclerView https://github.com/emileb/DragSortRecycler https://github.com/vinc3m1/DragSortAdapter

Binghammer avatar Mar 12 '15 16:03 Binghammer