Davide Steduto
Davide Steduto
At today, I'm still not able to fix this small bug: RecyclerView loads more items at the startup than the ones shown, and during the binding, the total items corresponds...
Thanks @RobertoIDL :biking_man: **Short answer version**: to animate big containers, the layouts have to stay as child views of `FlipView`, the properties `frontLayout` and `rearLayout` are intended for small Views...
Hello thanks for opening this ticket. This ticket is now linked to #29.
Ok understood. Originally the plugin was intended to be used as single user, but it became quite famous, and I am also having this merge to do when I work...
+1 EDIT: Since I needed something that worked (now!) with automatic build, code and patch, I created my own library [GrabVer](https://github.com/davideas/GrabVer). Thanks to the first post.
This must be an adapter animation, not triggered by an addition nor removal. I think, you can check my adapter library for those custom adapter animations.
From the Javadoc it says that _animateChange_ will not be executed if the property is `false`. And it is set `false` from the constructor. Am I wrong? ``` java /**...
I think this question should not be asked for this library, since the removal of an item is part of `RecyclerView.Adapter`. For the resolution of your problem you should better...
@huangjim, it is strange indeed, probably it's because onBindViewHolder is called everytime you call notify and that final might lead to some weird behaviour. Try to implement the delete from...
Please see my comment to this question: http://stackoverflow.com/questions/34747458/partial-and-full-swipe-for-recyclerview-using-touchhelpercallback#comment61272119_34747458. For me using ItemTouchHelper is impossible to obtain the click. I was successfully to have even partial swipe, but still, click on...