I have NavigationView
with multiple Groups which is based on some condition I need to hide & show the group. How I can achieve this.
My Sample NavigationView
menu
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single"
android:id="@+id/grp_employee"
>
<item
android:id="@+id/help"
android:checked="false"
android:icon="@drawable/ic_help"
android:title="@string/app_name" />
.......
</group>
<group android:checkableBehavior="single"
android:id="@+id/grp_admin"
>
<item
android:id="@+id/admin_help"
android:checked="false"
android:icon="@drawable/ic_help"
android:title="@string/app_name" />
.......
</group>
<group> ... </group>
</menu>
This is the my NavigationView file. I just want to show only one group view at a time hide all others group.