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.
I have to show some LinearLayouts in Scroll. I am using ListView but got
Share
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.