Tagged Questions

0
votes
1answer
20 views

ListActivity: alter data from SQLLite before putting it into the row

This is my ListActivity: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.my_list); mDbHelper = new MyDbAdapter(this); …
0
votes
2answers
159 views

update Android ListActivity when list data changes

i want to know how to refresh the ListActivity when i change/add data to the list wich is dispayed. i first thougt the ListAdapter would know when the list is changed but when i add elements to the …
1
vote
3answers
805 views

Custom list clicking with checkboxes in Android

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 …