android – 添加带子菜单项的图标

android – 添加带子菜单项的图标,第1张

概述我已经制作了子菜单中的一些项目.现在我想添加带子菜单项的不同图标.我还将代码应用于菜单项以添加图标,但它没有显示我的图标我的代码是这样的: public boolean onCreateOptionsMEnu(Menu m) { SubMenu s1 = m.addSubMenu("menu1"); s1.add(0,0,1,"1").setIcon(R.drawable.icon 我已经制作了子菜单中的一些项目.现在我想添加带子菜单项的不同图标.我还将代码应用于菜单项以添加图标,但它没有显示我的图标我的代码是这样的:

public boolean onCreateOptionsMEnu(Menu m) {    SubMenu s1 = m.addSubMenu("menu1");    s1.add(0,1,"1").setIcon(R.drawable.icon1);    s1.add(0,2,"2").setIcon(R.drawable.icon2);    return super.onCreateOptionsMenu(m);}
解决方法 子菜单不支持图标.

https://developer.android.com/guide/topics/ui/menus.html:

Icon Menu This is the collection of items initially visible at the bottom of the screen at the press of the MENU key. It supports a maximum of six menu items. THESE ARE the only menu items that support icons and the only menu items that do not support checkBoxes or radio buttons.

总结

以上是内存溢出为你收集整理的android – 添加带子菜单项的图标全部内容,希望文章能够帮你解决android – 添加带子菜单项的图标所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1129109.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存