Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ddfec1b authored by Romain Guy's avatar Romain Guy Committed by The Android Open Source Project
Browse files

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

parent 3b181204
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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) {