menu

Posted h-bolinblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了menu相关的知识,希望对你有一定的参考价值。

 override fun onCreateOptionsMenu(menu: Menu?): Boolean {
        menu?.add(Menu.NONE, 0, 0, "重新导入")
        return true
    }

    override fun onOptionsItemSelected(item: MenuItem?): Boolean {
        if (item?.itemId == 0) {
            MyLog.d("点击重新导入")
            return true
        }
        return super.onOptionsItemSelected(item)
    }

 

以上是关于menu的主要内容,如果未能解决你的问题,请参考以下文章

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

从片段将菜单添加到活动支持工具栏

在活动OnCreate中加载片段

菜单在片段中不可见

多片段层次结构中的菜单膨胀问题