Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71ff3da1 authored by Dave Kover's avatar Dave Kover
Browse files

Split out textColor to its own separate value.

If a theme modifies the dialer text to white and still leaves
the call log white, the text would be white-on-white. This change
allows the call_log_list_item_extra text to be changed separately.

Change-Id: I18f10494dd6987e6dee5655b5662b94622ca874f
(cherry picked from commit 176b6ab6)
parent 43c53f78
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@
        <TextView android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:id="@+id/badge_text"
                  android:textColor="@color/dialpad_primary_text_color"
                  android:textColor="@color/call_log_extra_text_color"
                  android:layout_gravity="center_vertical"
                  android:layout_weight="1"/>
        <ImageView android:id="@+id/dismiss_button"
+22 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
 Copyright (C) 2015 The CyanogenMod Project

 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>

    <!-- Call Log List Item Extra Text Color -->
    <color name="call_log_extra_text_color">@color/dialpad_primary_text_color</color>

</resources>