我有这个布局:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- The ActionBar -->
<include
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<!-- The main content view -->
<FrameLayout
android:id="@+id/flContent"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<!-- The navigation drawer -->
<android.support.design.widget.NavigationView
android:id="@+id/nvView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
app:menu="@menu/drawer_menu"
app:headerLayout="@layout/nav_header"/>
所以,看看在NavigationView
我们有这个属性:
app:menu="@menu/drawer_menu"
我有这个XML id菜单文件夹。
我想制作动态菜单,即在代码中我应该挂载'MenuItem'对象并设置为NavigationView
。
它是否正确?这是最佳做法吗?这可能吗?
注意:我的代码正在使用'static drawer_menu',我想改进它。
我在等待。
[编辑]
我做到了:
Menu menu = nvDrawer.getMenu();
for (KSMenuItem kmi : menus.values()) {
if (menu.size() == 0) {
menu.add(kmi.getId());
}
if (menu.getItem(kmi.getId()) == null) {
menu.add(kmi.getId());
}
MenuItem mi = menu.getItem(kmi.getId());
mi.setIcon(kmi.getIcon());
mi.setTitle(kmi.getTittle());
}
但是这个错误发生了:
06-27 15:26:15.538 15335-15335 /? E / AndroidRuntime:FATAL EXCEPTION:main进程:com.example.sticdev30.newdrawer,PID:15335 java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.sticdev30.newdrawer / com.example.sticdev30.newdrawer.MainActivity }:android.content.res.Resources $ NotFoundException:字符串资源ID#0x1
KSMenuItem是我的菜单数据的POJO。在kmi.id我通知增量整数...
我在等待
好像kmi.getId()
返回int
(或long
)。
但Menu.add(int)添加了来自给定字符串资源的菜单,其通常表示为R.string.something
,而不是通常的整数值。
Menu.add(CharSequence)确实添加了CharSequence标题的菜单,所以你需要做一些像menu.add(kmi.getId() + "");
这样的字符串到字符串的转换
您可以使用公共方法qazxsw poi在运行时使用2行代码重新充气qazxsw poi。在这个例子中,我用NavigationView
重新膨胀
inflateMenu
您可以通过以下步骤动态添加菜单:
步骤1。从导航视图new_navigation_drawer_items.xml
获取菜单对象
第2步。使用navigationView.getMenu().clear(); //clear old inflated items.
navigationView.inflateMenu(R.menu.new_navigation_drawer_items); //inflate new items.
将任何项添加到菜单中
我们可以动态添加/删除菜单项。假设我们有这个菜单项`
NavigationView.getMenu()
`
在Activity中,我们可以根据条件添加或删除menuitems
Menu.add()
希望它会有所帮助。