如何在 Android 中显示和隐藏菜单项?

发布于 2024-12-03 00:10:20 字数 126 浏览 2 评论 0原文

我有一些关于 android 操作栏和选项卡片段的问题。我有 3 个片段,每当选择第三个片段时,我就会在操作栏上显示菜单项。

我该怎么办?

我尝试在运行时引用该按钮并将可见性设置为 true,但它似乎为空。

I have some questions regarding android action bar and tab fragments. I have 3 fragments and whenever the third fragment is selected, then I will show the menu item on the actiobar.

how should i go about it?

I tried referencing to the button at runtime and set the visibility to true, but it seems to be null.

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

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

发布评论

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

评论(1

那些过往 2024-12-10 00:10:20

You should look into the Fragment method setHasOptionsMenu(boolean hasMenu). This way each Fragment can manage its own menu items and the system will take care of the hiding/showing of the action items based on this value. In your case it would seem you would set this to false for your first and second fragments, while the third would pass a true so it hits the onCreateOptionsMenu method.

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