summaryrefslogtreecommitdiff
path: root/src/com
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-09-21 15:58:03 -0700
committerYorke Lee <yorkelee@google.com>2015-09-21 15:58:28 -0700
commit44b1c13d45c1b74c21a3bcd4121708b2a89d39ba (patch)
treefc80a54f5349093bdae7e86a21cfad5e73f5d950 /src/com
parenta5dd7f93654181ebf927723d19e2f84a7e4c6ceb (diff)
Fix a couple of Telecom caching bugs
Make sure that stuff is cached and used properly Change-Id: I57152d60077620163f4516205761c052f991f906
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/dialer/calllog/PhoneCallDetailsHelper.java2
-rw-r--r--src/com/android/dialer/calllog/TelecomCallLogCache.java1
2 files changed, 2 insertions, 1 deletions
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;
}