hot questions tagged listactivity - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:20:54Z http://stackoverflow.com/feeds/tag?tagnames=listactivity&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1538796/update-android-listactivity-when-list-data-changes 0 update Android ListActivity when list data changes Sponge 2009-10-08T16:05:56Z 2009-10-08T17:35:02Z <p>i want to know how to refresh the ListActivity when i change/add data to the list wich is dispayed.</p> <p>i first thougt the ListAdapter would know when the list is changed but when i add elements to the list there is no update, only when i close the activity and reopen it i see the changes. so i searched for any update() refesh() or something like that method but there is none. so it seem i didnt get the concept, can someone help me please?</p> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android 1 Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T21:43:30Z 2009-11-28T14:05:07Z <p>I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom transformation of the data.</p> <p>I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.</p> <p>Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?</p> <p>Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?</p>