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

Commit 433c1d8a authored by Shawn Lin's avatar Shawn Lin Committed by Android (Google) Code Review
Browse files

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

parents 7a474b19 03045282
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);
        }
    }
}