在多个屏幕上使用overridePendingTransition

时间:2019-03-31 16:18:04

标签: android screen android-screen-support android-screen overridependingtransition

我正在尝试在自己的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);
        }

0 个答案:

没有答案