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

Commit 468f179c authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Android Git Automerger
Browse files

am 326ee191: am 4e792fa5: Merge "Polish animations for fingerprint icon" into mnc-dev

* commit '326ee191':
  Polish animations for fingerprint icon
  MediaPlayer: add mPreparing to weed out unwanted prepared messages
  BatteryStatsService: Only query bluetooth on demand.
  Indicate failed scans with EXTRA_RESULTS_UPDATED
  BatteryStatsService: Only query bluetooth on demand.
  Indicate failed scans with EXTRA_RESULTS_UPDATED
  For getHomeActivity() only return current user.
  Fix application moves.
  Close race condition in binderDied()
  Write packages.list when adding/removing users.
  camera: Add AIDL interface for CameraServiceProxy.
  Fix NPE in setSurfaceTexure
  Deal more gracefully with null smallIcons.
  Don't crash in bugreport on devices without BT
  Push initial disk state, handle empty media.
parents 630e9b5e 326ee191
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -659,6 +659,7 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener {
    }

    protected void handleScreenTurnedOn() {
        updateFingerprintListeningState();
        final int count = mCallbacks.size();
        for (int i = 0; i < count; i++) {
            KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get();
@@ -666,7 +667,6 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener {
                cb.onScreenTurnedOn();
            }
        }
        updateFingerprintListeningState();
    }

    protected void handleScreenTurnedOff(int arg1) {
+3 −2
Original line number Diff line number Diff line
@@ -14,12 +14,13 @@
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->

<set
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <set
        android:ordering="sequentially" >
        <objectAnimator
            android:duration="16"
            android:duration="60"
            android:propertyName="trimPathStart"
            android:valueFrom="0.0"
            android:valueTo="0.0"
@@ -31,6 +32,6 @@
            android:valueFrom="0.0"
            android:valueTo="1.0"
            android:valueType="floatType"
            android:interpolator="@android:interpolator/linear" />
            android:interpolator="@interpolator/lockscreen_fingerprint_draw_off_animation_interpolator_1" />
    </set>
</set>
+26 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<set
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <objectAnimator
        android:duration="140"
        android:propertyName="trimPathEnd"
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:valueType="floatType"
        android:interpolator="@interpolator/lockscreen_fingerprint_draw_off_animation_interpolator_0" />
</set>
+3 −3
Original line number Diff line number Diff line
@@ -19,18 +19,18 @@
    <set
        android:ordering="sequentially" >
        <objectAnimator
            android:duration="33"
            android:duration="20"
            android:propertyName="trimPathStart"
            android:valueFrom="0.0"
            android:valueTo="0.0"
            android:valueType="floatType"
            android:interpolator="@android:interpolator/linear" />
        <objectAnimator
            android:duration="150"
            android:duration="180"
            android:propertyName="trimPathStart"
            android:valueFrom="0.0"
            android:valueTo="1.0"
            android:valueType="floatType"
            android:interpolator="@android:interpolator/linear" />
            android:interpolator="@interpolator/lockscreen_fingerprint_draw_off_animation_interpolator_1" />
    </set>
</set>
+26 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<set
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <objectAnimator
        android:duration="190"
        android:propertyName="trimPathEnd"
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:valueType="floatType"
        android:interpolator="@interpolator/lockscreen_fingerprint_draw_off_animation_interpolator_1" />
</set>
Loading