Reputation: 1301
I am looking for a way to add View when scrolling through the ScrollView in android. I dont want to add all the Views when app starts, I want to add them when user scroll, thats for saving the memory. How can I do that, thank you
Upvotes: 0
Views: 100
Reputation: 7387
Use a list view. For a general overview and lots of great info, see the google I/O talk: http://www.youtube.com/watch?v=wDBM6wVEO70
And for a tutorial: http://www.vogella.de/articles/AndroidListView/article.html
Upvotes: 1