Hi Android developers,
I need a class for a part of my program. Let me describe the problem for you.
I need to have a class that lets me scroll down a list of “items” that I can click. Also, this list of items can grow (expand) or shrink as needed, like an ArrayList.
I saw the class ScrollView, but does this fulfill all of the requirements I need?
If not, what is the best class to use in my main.xml file to accomplish this task?
Thanks.
You can try using
ListViewin your XML file and then populate the listview from anArraylist. Something like this will work for you.