So, I formulated my question in the header of topic. My task is the updating textview's of ListView.
Thanks a lot!
So, I formulated my question in the header of topic. My task is the updating textview's of ListView.
Thanks a lot!
In order to add an item to the ListView you will need to add an item to the adapter that contains all the data, and call setAdapter() on the ListView again. If you need more specific help please post some of your code.
To update the list use list.notifyDataSetChanged();
, and to add items just add them to your items list that you feed into the adapter