summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2015-10-23 11:58:03 -0700
committerNancy Chen <nancychen@google.com>2015-10-23 11:58:03 -0700
commitf896f591922ced788c654c2b2e1eb6ac4a5681c8 (patch)
tree6ff0cf7ba5ed53ac719634464b5c94b248c29b17
parentef7ebe3065bbef11a48118ac2d642d50c37895a7 (diff)
Set the contact context background to the incall theme color.
Was setting the wrong layout element's background so the correct layout's background was not being changed. Bug: 25221808 Change-Id: I8184d449254da97162f41bc0a0faee14b84382d3
-rw-r--r--InCallUI/src/com/android/incallui/CallCardFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/CallCardFragment.java b/InCallUI/src/com/android/incallui/CallCardFragment.java
index fa4e8b4f1..0d635543c 100644
--- a/InCallUI/src/com/android/incallui/CallCardFragment.java
+++ b/InCallUI/src/com/android/incallui/CallCardFragment.java
@@ -1156,7 +1156,7 @@ public class CallCardFragment extends BaseFragment<CallCardPresenter, CallCardPr
}
mCallButtonsContainer.setBackgroundColor(themeColors.mPrimaryColor);
mCallSubject.setTextColor(themeColors.mPrimaryColor);
- mCallCardContent.setBackgroundColor(themeColors.mPrimaryColor);
+ mContactContext.setBackgroundColor(themeColors.mPrimaryColor);
//TODO: set color of message text in call context "recent messages" to be the theme color.
mCurrentThemeColors = themeColors;