onBackPressed() 在 ActivityGroup 内不起作用
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚遇到了同样的问题,我通过从 ActivityGroup 调用当前活动的 onBackPressed 解决了它:
idList 是活动组中的活动列表。
I just had this same problem and I solved it by calling the current activity's onBackPressed from the ActivityGroup:
idList is a list of activities in the activity group.