在我的应用程序中,我以编程方式填充NavigationView
菜单,例如
val menu = navigation.menu
menu.setGroupCheckable(MENU_GROUP, true, true)
val subMenu = menu.addSubMenu(MENU_GROUP, 0, 0, "New group")
subMenu.add(0, 0, 0, "item 1").apply { isCheckable = true }
subMenu.add(0, 1, 1, "item 2").apply { isCheckable = true }
subMenu.add(0, 2, 2, "item 3").apply { isCheckable = true }
subMenu.add(0, 3, 3, "item 4").apply { isCheckable = true }
val subMenu1 = menu.addSubMenu(MENU_GROUP, 1, 1, "New group 2")
subMenu1.add(1, 0, 0, "item 1").apply { isCheckable = true }
subMenu1.add(1, 1, 1, "item 2").apply { isCheckable = true }
subMenu1.add(1, 2, 2, "item 3").apply { isCheckable = true }
subMenu1.add(1, 3, 3, "item 4").apply { isCheckable = true }
这使我可以选择那些“项目*”
MenuItem
中的任何一个,但我不能选择任何SubMenu
标头。According to this,
可检查的项目仅出现在子菜单或上下文菜单中。
这是我对它的理解,但是我很难找到解决方法。物料组件
NavigationView
具体是does different cases for these two types of menu's我当前的解决方案实质上是重新实现具有普通视图的菜单来实现此目的。有什么办法可以避免这种情况,只是直接使
SubMenu
可以选择/检查? 最佳答案
Navigation Drawer
不支持可选标题。但是我们可以使用一个著名的库MaterialDrawer来实现这一点。
我将为您简化设置
依存关系:
implementation "com.mikepenz:materialdrawer:7.0.0"
implementation 'com.google.android.material:material:1.0.0'
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "androidx.annotation:annotation:1.1.0"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
您可能已经在项目中拥有其中一些依赖关系,而无需再次添加它们
只需将其添加到要添加抽屉的
onCreate
的Activity
DrawerBuilder()
.withActivity(this)
.withToolbar(toolbar)
.addDrawerItems(
SecondaryDrawerItem().withName("New group"),
PrimaryDrawerItem().withName("Item 1").withIcon(R.drawable.ic_icon),
PrimaryDrawerItem().withName("Item 2").withIcon(R.drawable.ic_icon),
PrimaryDrawerItem().withName("Item 3").withIcon(R.drawable.ic_icon),
DividerDrawerItem(),
SecondaryDrawerItem().withName("New group 2"),
PrimaryDrawerItem().withName("Item 1").withIcon(R.drawable.ic_icon),
PrimaryDrawerItem().withName("Item 2").withIcon(R.drawable.ic_icon),
PrimaryDrawerItem().withName("Item 3").withIcon(R.drawable.ic_icon)
)
.build()
您可以找到许多自定义信息here,回购中的sample app也包含许多这些自定义信息。
结果将是这样的
关于java - 如何在抽屉导航中创建可选标题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59512816/