Reputation: 1415
I have to show some LinearLayouts in Scroll. I am using ListView but got some problems in that. I want to change the listView to scrollView. IS there any special benefit of using ListView.
Upvotes: 0
Views: 220
Reputation: 28541
ListView will draw and load only the visible views. If you have a lot of data to display, the ScrollView will create all the "row" views which could lead to out of memory error or slow UI.
Upvotes: 2