Add a method to trigger the navigation bar animation in system

Bug: 189278432
Test: build
Change-Id: I9795c4cde805fdca29de3708e2d77f12932a1066
This commit is contained in:
shawnlin
2021-06-07 15:58:48 +08:00
parent ebcaa39d6b
commit 0304528265

View File

@@ -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);
}
}
}