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

Commit 2c195f77 authored by Daniel Sandler's avatar Daniel Sandler
Browse files

New shadowy status bar, direct from Z'ha'dum.

Artwork is FPO but serviceable enough. Many hardcoded font
colors & styles were moved to styles.xml where they belong.
AM/PM finally given the old heave-ho (but configurable in
StatusBarPolicy.java).

Notification content remains on a light-gray background for
now (so as not to screw up custom RemoteViews) but status
icons will definitely need across-the-board rework to look
better against a dark background.

Change-Id: Id9d5a699532f9336563cd6f9699bff3893735e4f
parent 8e55e88f
Loading
Loading
Loading
Loading
+199 B (1.01 KiB)
Loading image diff...
+1.39 KiB (2.31 KiB)
Loading image diff...
+17 B (204 B)
Loading image diff...
+2.95 KiB (3.16 KiB)
Loading image diff...
+5 −5
Original line number Original line Diff line number Diff line
@@ -76,28 +76,28 @@
            android:paddingTop="2dip"
            android:paddingTop="2dip"
            android:paddingRight="10dip">
            android:paddingRight="10dip">
            <TextView
            <TextView
                android:textAppearance="@style/TextAppearance.StatusBar.Ticker"
                android:layout_width="match_parent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_height="wrap_content"
                android:singleLine="true"
                android:singleLine="true"
                android:textColor="#ff000000" />
                />
            <TextView
            <TextView
                android:textAppearance="@style/TextAppearance.StatusBar.Ticker"
                android:layout_width="match_parent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_height="wrap_content"
                android:singleLine="true"
                android:singleLine="true"
                android:textColor="#ff000000" />
                />
        </com.android.server.status.TickerView>
        </com.android.server.status.TickerView>
    </LinearLayout>
    </LinearLayout>


    <com.android.server.status.DateView android:id="@+id/date"
    <com.android.server.status.DateView android:id="@+id/date"
        android:textAppearance="@style/TextAppearance.StatusBar.Icon"
        android:layout_width="wrap_content"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_height="match_parent"
        android:singleLine="true"
        android:singleLine="true"
        android:textSize="16sp"
        android:textStyle="bold"
        android:gravity="center_vertical|left"
        android:gravity="center_vertical|left"
        android:paddingLeft="6px"
        android:paddingLeft="6px"
        android:paddingRight="6px"
        android:paddingRight="6px"
        android:textColor="?android:attr/textColorPrimaryInverse"
        android:background="@drawable/statusbar_background"
        android:background="@drawable/statusbar_background"
        />
        />
</com.android.server.status.StatusBarView>
</com.android.server.status.StatusBarView>
Loading