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

Commit 29bc7f5d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Contacts: Add checkableimageview to sim import picker"

parents f3743147 0dda81c5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1316,7 +1316,8 @@ public class MultiPickContactActivity extends ListActivity implements
                cache.anrs = cursor.getString(SIM_COLUMN_ANRS);

                cliv.setDisplayName(cache.name);
                cliv.removePhotoView();
                mContactPhotoManager.loadThumbnail(cliv.getPhotoView(), -1, null, false, true,
                        new DefaultImageRequest(cache.name, cache.lookupKey, true));
                if (!TextUtils.isEmpty(cache.number)) {
                    cliv.setPhoneNumber(cache.number, null);
                } else if (!TextUtils.isEmpty(cache.email)) {
@@ -1325,6 +1326,7 @@ public class MultiPickContactActivity extends ListActivity implements
                } else {
                    cliv.setPhoneNumber(null, null);
                }
                cliv.setChecked(mChoiceSet.containsKey(String.valueOf(cache.id)), true);
            } else if (isPickEmail()) {
                cache.id = cursor.getLong(EMAIL_COLUMN_ID);
                cache.email = cursor.getString(EMAIL_COLUMN_ADDRESS);