Jorge

Results 28 comments of Jorge

AsymmetricRecyclerView is implementing > public void fireOnItemClick(int index, View v) method that is empty. There is only one way to solve this, extending the class and redefine it or make...

You can also checkout the code and include "library" module in your project. Then modify the method directly in the AsymmetricRecyclerView. That is what I did. Maybe in a future...

Hi @krishnapatel086 If this was not fixed (not sure) you need to redefine the method by yourself, please check comments above. You need to implement it either importing the project...

You need to define there the behaviour you would expect. Currently it is empty, so nothing will happen.

Thanks for the hints here! I hope this code and the article help more people

You can also check the video here from Kotlin London meetup explaining the architecture and the code: https://www.youtube.com/watch?v=RXSwQHur6zM

Hola Alberto! I've been superbusy lately working in a new company since I've published this repository. Right now I won't be spending too much time on fixing this, as I...

I would appreciate if you do so. Very happy to help!

Yeah, I'm aware about that. I'm not really happy about keeping transaction logic in controller. But in other hand, controller is the one executing the business logic so it will...

Yes, call verifications can happen before starting a transaction, but if you are reaching different APIs in the same controller method, it can end up executing first API call successfully...