如何从其他活动中关闭任何打开的活动?
您好,我想完成当前活动中之前打开的活动。有任何方法可以做到这一点。如果可能,请向我推荐可用的链接或示例。
Hi I want to finish previously opened activity on current activity . There is any way to doing this . If possible please suggest me usable link or examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用广播。
例子:
在
当前活动中 在上一个活动中
您可以在 YourBroadcastReceiver 的 onReceive 方法中调用 finish 方法。
Try to use Broadcast.
Example:
In your current activity
In your previous activity
You can invoke finish method in the YourBroadcastReceiver's onReceive method.
当您的上一个 Activity 完全被下一个 Activity 覆盖时,
YourPrevoiusActivity::onStop()
将被调用,您可以从该onStop
执行您需要的任何操作When your previous activity has been completely covered by your next Activity, then
YourPrevoiusActivity::onStop()
will be called and you can do whatever you need from thatonStop
如果你的第一个 Activity 不会被使用,你可以像这样调用 onStop() :
If your first activity will not be using, you can call onStop() like this: