嗨,我正在使用iphone之类的Android底部标签栏按钮。我有三个屏幕,并且在所有屏幕中都显示三个按钮。我为每个屏幕中的每个按钮使用了以下代码。

Intent intentNavOne = new Intent(ScreenOne.this,
                    ScreenTwo.class);
            intentNavOne .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            intentNavOne .addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);

            intentNavOne .addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
            startActivity(intentNavOne );


现在的问题是导航流程有时已更改。我只想要解决方案。实现我的任务的任何替代方法。

最佳答案

在开始新活动的活动中调用finish(),这将停止该活动的生命周期。

08-26 06:43