Android ActivityGroup:按下搜索按钮会使应用程序崩溃
我有一个选项卡主机,对于每个选项卡,关联一个 ActivityGroup,并且每个组中都有活动,现在我想使用搜索按钮,我遵循了 Google 的文档,但是当我按下搜索按钮时,我得到了一个异常:
java.util.ActivityGroup 。 lang.IllegalArgumentException: no ident
我的 ActivityGroup 子类重写 onSearchRequested() 并调用当前活动的 onSearchRequested(),并且我的活动(在 ActivityGroup 内)重写 onSearchRequested() 方法,当它返回 false 时,什么也没有出现,也没有崩溃,但是当它返回 true 时,应用程序崩溃了,有人知道问题是什么吗?
谢谢!
I have a tab host, for each tab, an ActivityGroup is associated, and there are activities in each group, now I want to use search button, I followed Google's documentation, but when I press search button, I got an exception:
java.lang.IllegalArgumentException: no ident
My ActivityGroup subclass overrides onSearchRequested() and calls current activity's onSearchRequested(), and my activity(inside ActivityGroup) overrides onSearchRequested() method, when it returns false, nothing appears and no crash, but when it returns true, the app crashes, does anyone know what the problem is?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的活动中
In your Acyivity