android – 动态添加/删除项菜单menuItem

前端之家收集整理的这篇文章主要介绍了android – 动态添加/删除项菜单menuItem前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个问题,我想以编程方式在工具栏(材料设计)中添加项目.

这是我的菜单

<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);
原文链接:https://www.f2er.com/android/314696.html

猜你在找的Android相关文章