我的应用程序无法正确关闭,我不知道为什么
首先,我使用操作栏。当我按“主页”选项后返回主类,然后按“后退”按钮时,我的应用程序不会像应有的那样关闭。相反,它尝试打开它离开的活动,但由于我正在调用 finish(),它只是像切换活动一样进行动画处理,然后显示我的主类。之后,我可以按“后退”按钮并正确关闭应用程序。如果我不按“主页”选项并使用第二个活动中的“后退”按钮,则一切都会按预期进行。
意图返回我的主课程。
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Intent intent = new Intent(First.this, Second.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivity(intent);
finish();
}
return super.onOptionsItemSelected(item);
}
First off, I'm using the Action Bar. When I go back to my Main class after pressing the Home option, then press the Back button, my app won't close like it should. Instead, it tries to open the activity it left from, but since I'm calling finish(), it just animates like it's switching activities and then shows my Main class. After this, I can press the Back button and properly close the app. If I don't press the Home option and use the Back button from my second activity, everything works like it should.
Intent leading back to my Main class.
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Intent intent = new Intent(First.this, Second.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivity(intent);
finish();
}
return super.onOptionsItemSelected(item);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用intent.addflags(flags)而不是使用intent.setflags(flags)...!!!!!
Try using intent.addflags(flags) not using intent.setflags(flags)...!!!!!