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

Commit f06c2a01 authored by Daniel Sandler's avatar Daniel Sandler Committed by Android (Google) Code Review
Browse files

Merge "Quick fix to lockscreen text color." into oc-dev

parents ff97ea2e 0c9b9ae5
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -32,10 +32,8 @@
        android:id="@+id/carrier_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/Keyguard.TextView"
        android:ellipsize="marquee"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textSize="@dimen/kg_status_line_font_size"
        android:textColor="?android:attr/textColorSecondary"
        android:visibility="gone"
        androidprv:allCaps="@bool/kg_use_all_caps" />

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

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

<resources>
    <!-- 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">
        <item name="android:singleLine">true</item>
        <item name="android:gravity">center_horizontal|center_vertical</item>