Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ListView and set a SimpleAdapter to show some formated items, then how could i add other items to the items Listview with the old format.

share|improve this question

2 Answers

up vote 1 down vote accepted

You'll need to extend the BaseAdapter class and create a method addItem() that adds your item to the BaseAdapater's item model. Then you should call notifyDatasetChanged to have your listview updated.

There are tons of examples of this online and on SO.

share|improve this answer

If you add more data to the List you supplied in the SimpleAdapter constructor and then call mySimpleAdapter.notifyDataSetChanged() method afterwards the ListView will refresh itself.

share|improve this answer
Thank you for your answer.But how's more, i do not like to refresh itself, because i need the listview to keep the position it scrolled. I want to make it just as i could load more datas. – user564706 Jan 5 '11 at 23:38
You have a List yes. eg. myList. To add data to it, call the method myList.add(myNewData). If you do that and do not call mySimpleAdapter.notifyDataSetChanged() the ListView will not refresh. myNewData of course depends on what you are sticking in your List. – techiServices Jan 5 '11 at 23:46
2  
If you update the backing data and call 'notifyDataSetChanged', it will keep the scroll position as best it can. – Jake Basile Jan 6 '11 at 4:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.