I have table with 3 columns which is binded to an XML document with
three text views.
String[] from = new String[]{A,B,C};
int [] to = new int[] {R.id.a,R.id.b,R.id.c};
Where R.id.a, R.id.b, R.id.c -> TextView
Depending on the value store in the third column, I have to decide
whether i should display this row or not
How should, I go about with this.
This is what I have so far :
SimpleCursorAdapter entry = new SimpleCursorAdapter(this,
R.layout.addrow, vCursor , from , to);
setListAdapter(entry);
If you can provide me an example, that would be really helpful.
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en