onBackPressed() 在 ActivityGroup 内不起作用

发布于 2024-11-14 18:48:04 字数 264 浏览 2 评论 0原文

我有一个 ActivityGroup,其中有一个 Activity。我已经覆盖此活动中的onBackPressed()。但不幸的是我的 onBackPressed() 没有被调用。所以我尝试使用onKeyDown()。但一点效果都没有。我的问题是,我在 ActivityGroup 中给出的 onBackPressed() 事件取得了控制权。如何覆盖我的子活动中的后退事件?

任何帮助表示赞赏。

I have an ActivityGroup inside of which I have an Activity. I have overrided the onBackPressed() in this Activity. But unfortunately my onBackPressed() is not being called. So I tried with onKeyDown(). But no effect at all. My problem is, the onBackPressed() event which I have given in the ActivityGroup takes control. How to override the Back Press event inside my sub Activity?

Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩耳倾听 2024-11-21 18:48:04

我刚刚遇到了同样的问题,我通过从 ActivityGroup 调用当前活动的 onBackPressed 解决了它:

@Override
public void onBackPressed()
{
    int length = idList.size();
    if (length > 1)
    {
        Activity current = getLocalActivityManager().getActivity(
            idList.get(length - 1));
        current.onBackPressed();
    }
}

idList 是活动组中的活动列表。

I just had this same problem and I solved it by calling the current activity's onBackPressed from the ActivityGroup:

@Override
public void onBackPressed()
{
    int length = idList.size();
    if (length > 1)
    {
        Activity current = getLocalActivityManager().getActivity(
            idList.get(length - 1));
        current.onBackPressed();
    }
}

idList is a list of activities in the activity group.

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