Themes: InCallUI dialpad digits color
11/2016: Port to Nougat's Dialer (from marshmallow's InCallUI) by KreAch3R
InCallUI's dialpad digits (not the digits' text) color is linked to the InCallUI theme primary color, on runtime. This is coded as such because Google wanted to update the InCallUI's theme (primary and primary-dark) colors in MSIM devices on the fly, based on which SIM card was used to make the call.
This commit:
* makes this behavior configurable by a boolean
* links the digits color to a color value
This way, the default behavior is preserved. The themer has to set the "config_dialpadDigitsStaticColor" boolean to true, in order to theme the color value. If he doesn't change the boolean, the default behavior is preserved and the digits color works as Google wanted.
Change-Id: I9fc18dc5068f8bab90fbe8b5cfc608f0500a09c8
diff --git a/InCallUI/src/com/android/incallui/DialpadFragment.java b/InCallUI/src/com/android/incallui/DialpadFragment.java
index ad288bd..38e3d8f 100644
--- a/InCallUI/src/com/android/incallui/DialpadFragment.java
+++ b/InCallUI/src/com/android/incallui/DialpadFragment.java
@@ -455,6 +455,10 @@
public void updateColors() {
int textColor = InCallPresenter.getInstance().getThemeColors().mPrimaryColor;
+ // Disable dynamic digits color, for better theme compatibility
+ if (getContext().getResources().getBoolean(R.bool.config_dialpadDigitsStaticColor)) {
+ textColor = getContext().getResources().getColor(R.color.dialpad_digits_color);
+ }
if (mCurrentTextColor == textColor) {
return;
diff --git a/res/values/projekt_colors.xml b/res/values/projekt_colors.xml
index a5f4aa9..a894291 100644
--- a/res/values/projekt_colors.xml
+++ b/res/values/projekt_colors.xml
@@ -17,4 +17,5 @@
<resources>
<color name="promo_card_header_text_color">@color/background_dialer_white</color>
<color name="promo_card_details_text_color">@color/background_dialer_white</color>
+ <color name="dialpad_digits_color">@color/incall_background_color</color>
</resources>
diff --git a/res/values/projekt_config.xml b/res/values/projekt_config.xml
new file mode 100644
index 0000000..1f61f12
--- /dev/null
+++ b/res/values/projekt_config.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (c) 2016 Project Substratum
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="config_dialpadDigitsStaticColor">false</bool>
+</resources>