Android ActivityGroup:按下搜索按钮会使应用程序崩溃

发布于 2024-11-14 17:43:02 字数 381 浏览 3 评论 0原文

我有一个选项卡主机,对于每个选项卡,关联一个 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 技术交流群。

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

发布评论

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

评论(1

那请放手 2024-11-21 17:43:02

在你的活动中

@Override
  public boolean onSearchRequested(){
      return true;
  }

In your Acyivity

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