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

Commit 9b4b74be authored by Daniel Sandler's avatar Daniel Sandler Committed by Android Git Automerger
Browse files

am 294c9fb8: Improved graphics for the intruder alert.

Merge commit '294c9fb8' into gingerbread-plus-aosp

* commit '294c9fb8':
  Improved graphics for the intruder alert.
parents 86405cbd 294c9fb8
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
        >
    <scale
        android:interpolator="@android:anim/overshoot_interpolator"
        android:fromXScale="0.7" android:toXScale="1.0"
        android:fromYScale="0.7" android:toYScale="1.0"
        android:pivotX="50%" android:pivotY="50%"
        android:duration="@android:integer/config_shortAnimTime" />
    <alpha 
        android:interpolator="@android:anim/decelerate_interpolator"
        android:fromAlpha="0.0" android:toAlpha="1.0"
        android:duration="@android:integer/config_shortAnimTime" />
</set>
+14 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
        >
    <scale
        android:interpolator="@android:anim/accelerate_interpolator"
        android:fromXScale="1.0" android:toXScale="0.7"
        android:fromYScale="1.0" android:toYScale="0.7"
        android:pivotX="50%" android:pivotY="50%"
        android:duration="@android:integer/config_shortAnimTime" />
    <alpha 
        android:interpolator="@android:anim/accelerate_interpolator"
        android:fromAlpha="1.0" android:toAlpha="0.0"
        android:duration="@android:integer/config_shortAnimTime" />
</set>
+7 −0
Original line number Diff line number Diff line
@@ -88,6 +88,13 @@
        <item name="windowExitAnimation">@anim/status_bar_exit</item>
    </style>

    <!-- {@hide} -->
    <style name="Animation.StatusBar.IntruderAlert"
        parent="@android:style/Animation.StatusBar">
        <item name="android:windowEnterAnimation">@anim/priority_alert_enter</item>
        <item name="android:windowExitAnimation">@anim/priority_alert_exit</item>
    </style>

    <!-- Standard animations for a translucent window or activity.  This
         style is <em>not<em> used by default for the translucent theme
         (since translucent activities are a special case that have no
−5.79 KiB
Loading image diff...
+1.05 KiB
Loading image diff...
Loading