我有一个问题,我想以编程方式在工具栏(材料设计)中添加项目.
这是我的菜单:
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity"> <item android:id="@+id/action_settings" android:title="@string/action_settings" android:orderInCategory="100" android:showAsAction="never" /> </menu>
我知道更改文本,颜色,背景和@override监听器
toolbar.setBackgroundColor toolbar.setTextColor toolbar.setNavigationIcon toolbar.setText
我不知道如何添加菜单ítem类别“android:orderInCategory =”300“
谢谢.
注意:我有所有片段,没有1个活动
Tree - > Activity - > Fragment1(here add menu item) - > Fragment2(add/remove menu item) - > Fragmentx ..
解决方法
试试这个工具栏有选项getMenu()返回菜单
private static final String placeholder1="Something"; private static final int FIRST_ID=Menu.FIRST; private static final int SECOND_ID=Menu.FIRST+1; //To add an item toolbar.getMenu().add(Menu.NONE,FIRST_ID,Menu.NONE,R.string.placeholder1); toolbar.getMenu().add(Menu.NONE,SECOND_ID,R.string.placeholder2); //and to remove a element just remove it with id toolbar.getMenu().removeItem(FIRST_ID);