android honeycomb - 如何使选项菜单项看起来被禁用?

发布于 2024-11-27 21:39:50 字数 270 浏览 1 评论 0原文

我正在尝试使用以下代码禁用选项菜单项之一:

public boolean onPrepareOptionsMenu (Menu menu){
     menu.findItem(R.id.menu_item_id).setEnabled(false);
     return true;
}

但是,执行该方法后,禁用的项目看起来就像菜单的其余部分(启用)一样。

是否可以让它看起来被禁用(变灰或其他什么)?如何?

提前致谢

I am trying to disable one of the options menu items using the foll code:

public boolean onPrepareOptionsMenu (Menu menu){
     menu.findItem(R.id.menu_item_id).setEnabled(false);
     return true;
}

However after the method is executed, disabled item looks just like the rest (enabled) of the menu.

Is it possible to make it look disabled (grayed out or something)? How?

Thanks in advance

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

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

发布评论

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

评论(1

皇甫轩 2024-12-04 21:39:50

你看过主题吗?查看这篇文章:如何更改文本Android 中菜单项的颜色?

设置主题后,您可能会发现这有助于查找可以设置的值:主题 XML

Have you looked at Themes? Check out this post: How to change the Text color of Menu item in Android?

Once you set up a Theme, you may find this helpful for finding what values can be set: Themes XML

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