summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2014-11-12 09:59:54 -0800
committerNancy Chen <nancychen@google.com>2014-11-12 09:59:54 -0800
commit0e82fca41425c474499548de72acbc77a7fd2f66 (patch)
treef0263ca448ad2d61d2808a0e4a670c37057cb5e3
parent97670b46b3958cec0d07cfc17133fdda313ddf3e (diff)
Use the highlight color instead of the tint color
The tint color of a phone account only refers to the color of the icon, the highlight color is the general display color used for text, backgrounds etc. We should use highlight color in Dialer Bug: 18192071 Change-Id: Ia7e1c6cf055357df98b2b2f481b32a727d1f6d61
-rw-r--r--src/com/android/dialer/calllog/PhoneAccountUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java
index 4f85abf81..2eaf94937 100644
--- a/src/com/android/dialer/calllog/PhoneAccountUtils.java
+++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java
@@ -73,7 +73,7 @@ public class PhoneAccountUtils {
*/
public static int getAccountColor(Context context, PhoneAccountHandle accountHandle) {
PhoneAccount account = getAccountOrNull(context, accountHandle);
- return account == null ? PhoneAccount.NO_COLOR : account.getIconTint();
+ return account == null ? PhoneAccount.NO_COLOR : account.getHighlightColor();
}
/**