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

Commit f844dc4f authored by Daniel Sandler's avatar Daniel Sandler
Browse files

Fit and finish on status bar:

  - Clock color fixed. [3374581]
  - Clock vertically aligned. [3388224]
  - Clock uses system font assets now. [3385564]
  - Solid version of AndroidClock added to build. [3385564]
  - Extraneous background glow removed from notification panel.
  - Removed solid black background from notifications. [3388223]
  - Added background image behind large notification icons
    and increased large size to 64dip [3388434, 3384355]
  - Corrected size & leading of notification text [3388577]

Bug: 3374581
Bug: 3384355
Bug: 3385564
Bug: 3388223
Bug: 3388224
Bug: 3388434
Bug: 3388577
Change-Id: I8e443da5758deca412d1ce5944f887b35f6265ed
parent b8942108
Loading
Loading
Loading
Loading
+1 KiB
Loading image diff...
+1.1 KiB
Loading image diff...
+5 −4
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
    android:layout_height="match_parent"
    >
    <ImageView android:id="@+id/icon"
        android:layout_width="48dp"
        android:layout_height="64dp"
        android:layout_marginLeft="4dp"
        android:layout_width="@dimen/notification_large_icon_width"
        android:layout_height="@dimen/notification_large_icon_height"
        android:background="@drawable/notify_panel_notification_icon_bg"
        android:scaleType="center"
        />
    <LinearLayout
@@ -14,7 +14,7 @@
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:orientation="vertical"
        android:paddingLeft="8dp"
        android:paddingLeft="16dp"
        >
        <TextView android:id="@+id/title"
            android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Title"
@@ -23,6 +23,7 @@
            android:singleLine="true"
            android:ellipsize="marquee"
            android:fadingEdge="horizontal"
            android:layout_marginBottom="-4dp"
            />
        <TextView android:id="@+id/text"
            android:textAppearance="@style/TextAppearance.StatusBar.EventContent"
+22 −13
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:orientation="vertical"
        android:paddingLeft="16dp"
        >
        <TextView android:id="@+id/title"
            android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Title"
@@ -16,6 +17,7 @@
            android:singleLine="true"
            android:ellipsize="marquee"
            android:fadingEdge="horizontal"
            android:layout_marginBottom="-4dp"
            />
        <TextView android:id="@+id/text"
            android:textAppearance="@style/TextAppearance.StatusBar.EventContent"
@@ -28,20 +30,27 @@
            android:fadingEdge="horizontal"
            />
    </LinearLayout>
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        >
        <TextView android:id="@+id/info"
            android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Info"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:singleLine="true"
            android:gravity="center_vertical"
            android:layout_alignParentLeft="true"
            android:paddingLeft="8dp"
            />
        <ImageView android:id="@+id/icon"
        android:layout_width="48dp"
        android:layout_height="32dp"
        android:layout_gravity="top"
        android:layout_marginTop="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignRight="@id/info"
            android:layout_marginBottom="8dip"
            android:scaleType="center"
            />
    </RelativeLayout>
</LinearLayout>
+2 −2
Original line number Diff line number Diff line
@@ -70,9 +70,9 @@
    <item type="dimen" name="dialog_min_width_minor">95%</item>

    <!-- The width of the big icons in notifications. -->
    <dimen name="notification_large_icon_width">60dp</dimen>
    <dimen name="notification_large_icon_width">64dp</dimen>
    <!-- The width of the big icons in notifications. -->
    <dimen name="notification_large_icon_height">60dp</dimen>
    <dimen name="notification_large_icon_height">64dp</dimen>

    <!-- Minimum width of the search view text entry area. -->
    <dimen name="search_view_text_min_width">160dip</dimen>
Loading