Automated import from //branches/donutburger/...@142990,142990

This commit is contained in:
Romain Guy
2009-03-26 14:51:52 -07:00
committed by The Android Open Source Project
parent 3b1812042d
commit 6ddfec1b19

View File

@@ -145,17 +145,17 @@ public class SimpleCursorAdapter extends ResourceCursorAdapter {
for (int i = 0; i < count; i++) {
final View v = holder[i];
if (v != null) {
String text = cursor.getString(from[i]);
if (text == null) {
text = "";
}
boolean bound = false;
if (binder != null) {
bound = binder.setViewValue(v, cursor, from[i]);
}
if (!bound) {
String text = cursor.getString(from[i]);
if (text == null) {
text = "";
}
if (v instanceof TextView) {
setViewText((TextView) v, text);
} else if (v instanceof ImageView) {