SimpleListView Scrolling Issue
Hi, first of all thanks for amazing SimpleListView, but I'm facing an issue.When we use SimpleListView within a scrollview then rows of SimpleListView decrease their size automatically on scrolling.
Can you help me to remove this issue?
Thanks in advance.
Thanks for the reporting this issue, just to clarify, you mean the height/width?
Heights decrease their sizes.
I'm facing another a big issue I have more data to bind SimpleListView,but when use notifyDataSetChanged then it takes lot of time, how can I remove this issue?
Thanks
You should not use simplelistview if you have a lot of data, the idea was to avoid using listview when you have a few items within scrollview. Each time when you do notifydatasetchanges, it will create each time again
Thanks for reply, But any other idea to avoid listview if I have lots of data?
how many item do you have in the list and how is the complexity of the item view?
I think we could introduce a new method to update only the given position, that would help a lot for the performance, would that solve your problem?
RecyclerView? :smiley: What's the problem with ListView?