i want to show them in same column with two row in list.
i m think that i have to use simpleCursorAdapter, because arrayadapter and other adapters can not show two cursor in a list.
Using java Syntax Highlighting
- <span style="color: red">simpleCursorAdapter=new SimpleCursorAdapter(this,R.layout.row,matrixCursor,new String[]{matrixCursor.getColumnName(1),matrixCursor.getColumnName(2)},new int[]{R.id.TextView01,R.id.TextView02});</span>
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
my problem is "simpleCursorAdapter.notifyDataSetChanged();" is not working.
Using java Syntax Highlighting
- protected void onResume() {
- cursor2.requery();
- cursor3=myDbAdapter.getAll();
- System.out.println("ak_:Onresumed");
- simpleCursorAdapter.notifyDataSetChanged();
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
so my list is not refresing/updating altough all cursors all results are updating.
Is there any idea?

