0
The default listview scroll is very fast, and as I turn off the "Recycle" of my listview because I am painting some items, I realized that it is getting slow when I swipe over the list. Does anyone know how to slow down the scroll "slide" so when I slide give getView time go painting my items without choking my list? Thank you in advance.
Are you using the View Holder pattern on Adapter? If not, the choking is because of it and not because you are painting the views.
– Luiz
Want let the scroll "slide" slower is "contra-natura". The aim is always to make the application as fluid as possible. Post your Adapter
– ramaral
What I wanted was just to make the feeling of sliding heavier, just as we set the mouse sliding, with this heavier sliding I could go painting my listview tens without the feeling of choking.
– daniel12345smith
As I said, the choke happens because of the lack of the View Holder standard. The list view can have a very fluid scroll without choking even if you have images in each item. As @ramaral said, post your Adapter and we can help you with the implementation.
– Luiz