summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2015-03-14 02:25:45 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2015-03-14 02:25:45 -0700
commit9cad9b31c96fb9be06efc39a786c83d2ea5f639b (patch)
treed55ec1ebd7097e916571139303dc350e7e9b0025
parent8d2ddd3366f3545ed1ae88d777070c76dd800cbf (diff)
parentc838ad81db70fe42965b3e7dc2be27d679d4c12f (diff)
downloadandroid_packages_apps_ContactsCommon-9cad9b31c96fb9be06efc39a786c83d2ea5f639b.tar.gz
android_packages_apps_ContactsCommon-9cad9b31c96fb9be06efc39a786c83d2ea5f639b.tar.bz2
android_packages_apps_ContactsCommon-9cad9b31c96fb9be06efc39a786c83d2ea5f639b.zip
Merge "Update PhoneAccount icon API (2/6)"
-rw-r--r--src/com/android/contacts/common/widget/SelectPhoneAccountDialogFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/contacts/common/widget/SelectPhoneAccountDialogFragment.java b/src/com/android/contacts/common/widget/SelectPhoneAccountDialogFragment.java
index 33eebcad..86db1747 100644
--- a/src/com/android/contacts/common/widget/SelectPhoneAccountDialogFragment.java
+++ b/src/com/android/contacts/common/widget/SelectPhoneAccountDialogFragment.java
@@ -196,7 +196,7 @@ public class SelectPhoneAccountDialogFragment extends DialogFragment {
holder.numberTextView.setVisibility(View.VISIBLE);
holder.numberTextView.setText(account.getAddress().getSchemeSpecificPart());
}
- holder.imageView.setImageDrawable(account.getIcon(getContext()));
+ holder.imageView.setImageDrawable(account.createIconDrawable(getContext()));
return rowView;
}