我正在尝试overridePendingTransition
在我的中使用,app
但我screens
在同一个中使用多个xml
(我正在编写一个 android 游戏),当我从一个屏幕切换到另一个屏幕时,我使用该Visibility
属性,在这种情况下,有什么方法可以使用overridePendingTransition
?
例子:
void switchToScreen(int screenId) {
// make the requested screen visible; hide all others.
for (int id : SCREENS) {
findViewById(id).setVisibility(screenId == id ? View.VISIBLE : View.GONE);
}