Simplecursoradapter.viewbinder Text Not Showing
I have been stacked at a problem and i can not find the solution. I have a database and i load a listview using SimpleCursorAdapter. I want to change the color of a text depending
Solution 1:
I have found the answer...
I had to set the color and after that i had to setText too....
incomeAdapter.setViewBinder(newSimpleCursorAdapter.ViewBinder() {
publicbooleansetViewValue(View view, Cursor cursor, int columnIndex) {
if (view.getId()==R.id.amountTextView)
{
intincOrExpIndex= cursor.getColumnIndex("incOrExp");
intincOrExp= cursor.getInt(incOrExpIndex);
switch(incOrExp) {
case0:
TextViewtv0= (TextView)view;
tv0.setTextColor(Color.BLUE);
tv0.setText(cursor.getString(cursor.getColumnIndex("inAmount")));
break;
case1:
TextViewtv1= (TextView)view;
tv1.setTextColor(Color.RED);
tv1.setText(cursor.getString(cursor.getColumnIndex("inAmount")));
break;
}
returntrue;
}
returnfalse;}
});
I want to thank people who have tried to solve this problem...
Post a Comment for "Simplecursoradapter.viewbinder Text Not Showing"