How to inflate android NavigationView with another menu dynamically during onClick?

狂风中的少年 提交于 2019-11-30 09:21:30

try the following code

imgIndic.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {      
        navView.getMenu().clear();
        navView.inflateMenu(R.menu.second_menu);
    }
}); 

I would suggest to inflate just one menu with several groups and change the visibility of the groups. Simple and effective.

<group
    android:id="@+id/group_1"
    android:checkableBehavior="single"
    android:visible="false">
    ...
</group>

<group
    android:id="@+id/group_2"
    android:checkableBehavior="single"
    android:visible="true">
    ...
</group>

In your java code call

navigationView.getMenu().setGroupVisible(R.id.group_1, true)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!