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

Commit adc0a5bd authored by Justin Ho's avatar Justin Ho Committed by Android (Google) Code Review
Browse files

Merge "Attenuate notification icons in the system bar." into honeycomb

parents 07520feb 49371ada
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -45,7 +45,6 @@
            android:id="@+id/notificationIcons"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="horizontal"
            >
            <view
                class="com.android.systemui.statusbar.tablet.NotificationIconArea$IconLayout"
@@ -55,6 +54,14 @@
                android:layout_gravity="center_vertical"
                android:layout_marginLeft="8dp"
                />
            <View 
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_alignLeft="@id/icons"
                android:layout_alignRight="@id/icons"
                android:background="@drawable/notification_icon_area_smoke"
                android:clickable="false"
                />
        </com.android.systemui.statusbar.tablet.NotificationIconArea>
    </LinearLayout>

+1 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <drawable name="status_bar_background">#000000</drawable>
    <drawable name="notification_icon_area_smoke">#A0000000</drawable>
</resources>
+2 −1
Original line number Diff line number Diff line
@@ -23,13 +23,14 @@ import android.util.AttributeSet;
import android.util.Slog;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.ImageView;
import android.view.MotionEvent;

import com.android.systemui.R;


public class NotificationIconArea extends LinearLayout {
public class NotificationIconArea extends RelativeLayout {
    private static final String TAG = "NotificationIconArea";

    IconLayout mIconLayout;