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

Commit b741f053 authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Fix more card appearance to spec from design.

Bug: 15392952
Change-Id: I4539b48af33dc6838ef0c59dac7ca08fc1a2bd03
parent e42c72e1
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2014 The Android Open Source 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
  -->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="#1a000000" />
</shape>
 No newline at end of file
+10 −10
Original line number Diff line number Diff line
@@ -32,20 +32,20 @@
        />
    <TextView
        android:id="@+id/more_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:layout_marginStart="18dp"
        android:layout_gravity="center_vertical"
        android:gravity="center_horizontal"
        android:textColor="@color/keyguard_overflow_content_color"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:background="@drawable/keyguard_overflow_number_background"
        android:gravity="center"
        android:textColor="#ff686868"
        android:textStyle="bold"
        android:textSize="14dp"
        />
    <com.android.systemui.statusbar.NotificationOverflowIconsView
        android:id="@+id/overflow_icons_view"
        android:layout_gravity="end|center_vertical"
        android:gravity="end"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:layout_gravity="center_vertical"
        android:layout_marginStart="64dp"
        android:layout_width="120dp"
        android:layout_height="wrap_content"
        />
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@
    <drawable name="notification_item_background_color_pressed">#ff454545</drawable>

    <!-- Tint color for the content on the notification overflow card. -->
    <color name="keyguard_overflow_content_color">#ff666666</color>
    <color name="keyguard_overflow_content_color">#ff686868</color>

    <!-- The color of the red speed bump dot -->
    <color name="speed_bump_dot_red">#ffd50000</color>
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@
    <dimen name="notification_mid_height">128dp</dimen>

    <!-- Height of a the summary ("more card") notification on keyguard. -->
    <dimen name="notification_summary_height">40dp</dimen>
    <dimen name="notification_summary_height">44dp</dimen>

    <!-- size at which Notification icons will be drawn in the status bar -->
    <dimen name="status_bar_icon_drawing_size">18dip</dimen>
+2 −4
Original line number Diff line number Diff line
@@ -558,10 +558,8 @@
    <!-- Zen mode: Short title. [CHAR LIMIT=40] -->
    <string name="zen_mode_title">Do not disturb</string>

    <!-- Text for overflow card on Keyguard when there is not enough space for all notifications on Keyguard. [CHAR LIMIT=12] -->
    <plurals name="keyguard_more_overflow_text">
        <item quantity="other">%d more</item>
    </plurals>
    <!-- Text for overflow card on Keyguard when there is not enough space for all notifications on Keyguard. [CHAR LIMIT=1] -->
    <string name="keyguard_more_overflow_text">+<xliff:g id="number_of_notifications" example="5">%d</xliff:g></string>

    <!-- An explanation for the visual speed bump in the notifications, which will appear when you click on it. [CHAR LIMIT=50] -->
    <string name="speed_bump_explanation">Less urgent notifications below</string>
Loading