如何从其他活动中关闭任何打开的活动?

发布于 2024-12-21 15:37:41 字数 59 浏览 0 评论 0原文

您好,我想完成当前活动中之前打开的活动。有任何方法可以做到这一点。如果可能,请向我推荐可用的链接或示例。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

囍孤女 2024-12-28 15:37:41

尝试使用广播。
例子:

Intent i = new Intent("Some action");
sendBroadcast(i);

当前活动中 在上一个活动中

YourBroadcastReceiver receiver = new YourBroadcastReceiver();
registerReciver(receiver, new IntentFilter("Some action"));

您可以在 YourBroadcastReceiver 的 onReceive 方法中调用 finish 方法。

Try to use Broadcast.
Example:
In your current activity

Intent i = new Intent("Some action");
sendBroadcast(i);

In your previous activity

YourBroadcastReceiver receiver = new YourBroadcastReceiver();
registerReciver(receiver, new IntentFilter("Some action"));

You can invoke finish method in the YourBroadcastReceiver's onReceive method.

时光与爱终年不遇 2024-12-28 15:37:41

当您的上一个 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 that onStop

咽泪装欢 2024-12-28 15:37:41

如果你的第一个 Activity 不会被使用,你可以像这样调用 onStop() :

@Override
public void onStop() {
    super.onStop();
    this.finish();
}

If your first activity will not be using, you can call onStop() like this:

@Override
public void onStop() {
    super.onStop();
    this.finish();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文