Kamal
Kamal

Reputation: 1415

better from ListView & Scroll View?

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

Answers (1)

Vincent Mimoun-Prat
Vincent Mimoun-Prat

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

Related Questions