summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2015-01-22 16:42:43 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-01-22 16:42:44 +0000
commit2752f32c817bed63fd6afde6d3e970681b6ecdef (patch)
treebd1f80bca5b7440cb5391dc19554bce4e87453de /src
parent1eb16ea1adca302ff19f64d6ae55e586194a6127 (diff)
parentb3772482c13299820c4ece8a3c14cd2f46f18e63 (diff)
Merge "Ensure sim color is shown on multi-sim devices when only one sim installed." into lmp-mr1-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/calllog/PhoneAccountUtils.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java
index adeec0f2b..f9bd9ad4a 100644
--- a/src/com/android/dialer/calllog/PhoneAccountUtils.java
+++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java
@@ -75,21 +75,19 @@ public class PhoneAccountUtils {
*/
public static int getAccountColor(Context context, PhoneAccountHandle accountHandle) {
PhoneAccount account = getAccountOrNull(context, accountHandle);
+ // For single-sim devices the PhoneAccount will be NO_HIGHLIGHT_COLOR by default, so it is
+ // safe to always use the account highlight color.
return account == null ? PhoneAccount.NO_HIGHLIGHT_COLOR : account.getHighlightColor();
}
/**
- * Retrieve the account metadata, but if the account does not exist or the device has only a
- * single registered and enabled account, return null.
+ * Retrieve the account metadata.
*/
private static PhoneAccount getAccountOrNull(Context context,
PhoneAccountHandle accountHandle) {
TelecomManager telecomManager =
(TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
final PhoneAccount account = telecomManager.getPhoneAccount(accountHandle);
- if (account == null || !telecomManager.hasMultipleCallCapableAccounts()) {
- return null;
- }
return account;
}
}