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

Commit a0c788d3 authored by Shawn Lin's avatar Shawn Lin Committed by Automerger Merge Worker
Browse files

Merge "Add a method to trigger the navigation bar animation in system" into sc-dev am: 433c1d8a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14879192

Change-Id: I01bf8ae9bc270abd2e389837e1e140bf8c47dccd
parents fc634d41 433c1d8a
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -152,4 +152,15 @@ public class RecentsAnimationControllerCompat {
            Log.e(TAG, "Failed to detach the navigation bar from app", e);
        }
    }

    /**
     * @see IRecentsAnimationController#animateNavigationBarToApp(long)
     */
    public void animateNavigationBarToApp(long duration) {
        try {
            mAnimationController.animateNavigationBarToApp(duration);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to animate the navigation bar to app", e);
        }
    }
}