commit | d30dc6745769e28dd8c4f86f44f529041d793e1f | [log] [tgz] |
---|---|---|
author | Evan Millar <emillar@google.com> | Thu Oct 15 15:36:00 2009 -0700 |
committer | Evan Millar <emillar@google.com> | Thu Oct 15 16:09:45 2009 -0700 |
tree | 41299ef15d4a19bfde2a5903a37e780797bf4d37 | |
parent | 00a1d937c21c08956c27c38a4ce3978b49fac734 [diff] |
Fix monkey crasher (bug http://b/issue?id=2190035 and http://b/issue?id=2190875)
diff --git a/src/com/android/contacts/ContactsListActivity.java b/src/com/android/contacts/ContactsListActivity.java index 3414602..5376704 100644 --- a/src/com/android/contacts/ContactsListActivity.java +++ b/src/com/android/contacts/ContactsListActivity.java
@@ -2334,7 +2334,7 @@ } View v; - if (convertView == null) { + if (convertView == null || convertView.getTag() == null) { v = newView(mContext, cursor, parent); } else { v = convertView;