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

Commit 525b7c02 authored by Chris Wren's avatar Chris Wren Committed by Android (Google) Code Review
Browse files

Merge "heads up notifications, v0.1"

parents 42e230cd 157026f8
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -16,5 +16,6 @@

<selector xmlns:android="http://schemas.android.com/apk/res/android"
          android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    <item android:state_pressed="true"  android:drawable="@drawable/intruder_bg_pressed" />
    <item android:state_pressed="true"
          android:drawable="@drawable/heads_up_notification_bg_pressed" />
</selector>
+3 −9
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
-->

<!--    android:background="@drawable/status_bar_closed_default_background" -->
<com.android.systemui.statusbar.policy.IntruderAlertView
<com.android.systemui.statusbar.policy.HeadsUpNotificationView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
@@ -29,12 +29,6 @@
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:id="@+id/contentHolder"
        android:background="@drawable/intruder_window_bg"
        android:background="@drawable/heads_up_window_bg"
        />
<!--    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/title_bar_shadow"
        android:scaleType="fitXY"
        /> -->
</com.android.systemui.statusbar.policy.IntruderAlertView>
</com.android.systemui.statusbar.policy.HeadsUpNotificationView>
Loading