From 44b1c13d45c1b74c21a3bcd4121708b2a89d39ba Mon Sep 17 00:00:00 2001 From: Yorke Lee Date: Mon, 21 Sep 2015 15:58:03 -0700 Subject: Fix a couple of Telecom caching bugs Make sure that stuff is cached and used properly Change-Id: I57152d60077620163f4516205761c052f991f906 --- src/com/android/dialer/calllog/PhoneCallDetailsHelper.java | 2 +- src/com/android/dialer/calllog/TelecomCallLogCache.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/com/android/dialer/calllog/PhoneCallDetailsHelper.java b/src/com/android/dialer/calllog/PhoneCallDetailsHelper.java index df5fe0606..54324cdde 100644 --- a/src/com/android/dialer/calllog/PhoneCallDetailsHelper.java +++ b/src/com/android/dialer/calllog/PhoneCallDetailsHelper.java @@ -112,7 +112,7 @@ public class PhoneCallDetailsHelper { if (accountLabel != null) { views.callAccountLabel.setVisibility(View.VISIBLE); views.callAccountLabel.setText(accountLabel); - int color = PhoneAccountUtils.getAccountColor(mContext, details.accountHandle); + int color = mTelecomCallLogCache.getAccountColor(details.accountHandle); if (color == PhoneAccount.NO_HIGHLIGHT_COLOR) { int defaultColor = R.color.dialtacts_secondary_text_color; views.callAccountLabel.setTextColor(mContext.getResources().getColor(defaultColor)); diff --git a/src/com/android/dialer/calllog/TelecomCallLogCache.java b/src/com/android/dialer/calllog/TelecomCallLogCache.java index 7071669e5..6363b91ec 100644 --- a/src/com/android/dialer/calllog/TelecomCallLogCache.java +++ b/src/com/android/dialer/calllog/TelecomCallLogCache.java @@ -120,6 +120,7 @@ public class TelecomCallLogCache { public boolean isVideoEnabled() { if (!mHasCheckedForVideoEnabled) { mIsVideoEnabled = CallUtil.isVideoEnabled(mContext); + mHasCheckedForVideoEnabled = true; } return mIsVideoEnabled; } -- cgit v1.2.3