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

Commit a98a52fa authored by Dan Sandler's avatar Dan Sandler Committed by gitbuildkicker
Browse files

Quick fix to lockscreen text color.

Bug: 37299706
Test: visual
Change-Id: Ide48186f0f1cb4a50c77b45ae8b80a79781d7b0d
(cherry picked from commit 0c9b9ae5)
parent 21aeaf4b
Loading
Loading
Loading
Loading
+2 −7
Original line number Original line Diff line number Diff line
@@ -32,10 +32,8 @@
        android:id="@+id/carrier_text"
        android:id="@+id/carrier_text"
        android:layout_width="wrap_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_height="wrap_content"
        style="@style/Keyguard.TextView"
        android:ellipsize="marquee"
        android:ellipsize="marquee"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textSize="@dimen/kg_status_line_font_size"
        android:textColor="?android:attr/textColorSecondary"
        android:visibility="gone"
        android:visibility="gone"
        androidprv:allCaps="@bool/kg_use_all_caps" />
        androidprv:allCaps="@bool/kg_use_all_caps" />


@@ -46,10 +44,7 @@
        android:layout_weight="1"
        android:layout_weight="1"
        android:layout_marginTop="@dimen/eca_overlap"
        android:layout_marginTop="@dimen/eca_overlap"
        android:text="@*android:string/lockscreen_emergency_call"
        android:text="@*android:string/lockscreen_emergency_call"
        style="?android:attr/buttonBarButtonStyle"
        style="@style/Keyguard.TextView.EmergencyButton"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textSize="@dimen/kg_status_line_font_size"
        android:textColor="?android:attr/textColorSecondary"
        android:textAllCaps="@bool/kg_use_all_caps" />
        android:textAllCaps="@bool/kg_use_all_caps" />


</com.android.keyguard.EmergencyCarrierArea>
</com.android.keyguard.EmergencyCarrierArea>
+1 −3
Original line number Original line Diff line number Diff line
@@ -23,11 +23,9 @@
    android:layout_width="match_parent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:gravity="center"
    style="@style/Keyguard.TextView"
    android:id="@+id/keyguard_message_area"
    android:id="@+id/keyguard_message_area"
    android:singleLine="true"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:ellipsize="marquee"
    android:textAppearance="?android:attr/textAppearance"
    android:textSize="@dimen/kg_status_line_font_size"
    android:textColor="?android:attr/textColorSecondary"
    android:focusable="true" />
    android:focusable="true" />
+9 −0
Original line number Original line Diff line number Diff line
@@ -19,6 +19,15 @@


<resources>
<resources>
    <!-- Keyguard PIN pad styles -->
    <!-- Keyguard PIN pad styles -->
    <style name="Keyguard.TextView" parent="@android:style/Widget.DeviceDefault.TextView">
        <item name="android:textColor">@*android:color/primary_device_default_light</item>
        <item name="android:textSize">@dimen/kg_status_line_font_size</item>
    </style>
    <style name="Keyguard.TextView.EmergencyButton" parent="@android:style/DeviceDefault.ButtonBar">
        <item name="android:textColor">@*android:color/primary_device_default_light</item>
        <item name="android:textSize">@dimen/kg_status_line_font_size</item>
        <item name="android:background">@null</item>
    </style>
    <style name="Widget.TextView.NumPadKey" parent="@android:style/Widget.TextView">
    <style name="Widget.TextView.NumPadKey" parent="@android:style/Widget.TextView">
        <item name="android:singleLine">true</item>
        <item name="android:singleLine">true</item>
        <item name="android:gravity">center_horizontal|center_vertical</item>
        <item name="android:gravity">center_horizontal|center_vertical</item>