Android - 模拟后退按钮
当我按下应用程序中的按钮时,我需要返回到上一个活动。
有什么想法吗?
When i press a button in my app, I need to return to the last activity.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我按下应用程序中的按钮时,我需要返回到上一个活动。
有什么想法吗?
When i press a button in my app, I need to return to the last activity.
Any ideas?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
从您想要结束的活动中调用
finish()
应该可以解决这个问题。多年后编辑:这仍然有效,但有点严厉。当我最初发布此内容时,
Fragments
并不存在,并且(正如一些评论者指出的那样)当涉及Fragments
时,它的工作方式并不完全相同。如果您使用Fragments,现在有更好的方法。
Calling
finish()
from the activity you want to end should take care of this.Edit many years later: This still works, but it's a bit of a heavy-handed approach. When I originally posted this,
Fragments
didn't exist, and (as several commenters have pointed out) this doesn't work quite the same way when there areFragments
involved. There are better approaches now if you're usingFragments.
只是为了记录:在某些情况下,所描述的方法与后退按钮的作用不同,但如果您位于片段中,您可以调用
or
来实现完全相同的行为。
Just for record: The described method doesn't do the same as the back button does in some cases, but you can call
or
if you are in a fragment to achieve exaclty the same behaviour.
使用片段时:
或者
如果您使用 android.support.v4.app 包
when using fragments:
or
if you are using android.support.v4.app package
这是针对这样的情况:同一片段有时可能是活动中的唯一片段,有时可能是多片段活动的一部分,例如在平板电脑上,两个片段同时可见。
例如,可以调用此代码来实现“取消”按钮。
This is for a situation where the same fragment may sometimes be the only fragment in an activity, and sometimes part of a multi-fragment activity, for example on a tablet where two fragments are visible at the same time.
This code can be called to implement a Cancel button, for example.
如果您想以编程方式调用后退按钮按下,执行此操作的新方法(不推荐调用 onBackPressed() )是:
If you want to invoke back button press programmatically, new way of doing this (calling onBackPressed() is deprecated) is:
您可以在按下后退按钮时欺骗向上按钮调用:
You can spoof a up button call on back button press: