gpt4 book ai didi

android - NavigationView 中的动态菜单

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:49:23 27 4
gpt4 key购买 nike

我有这个布局:

<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 Process: com.example.sticdev30.newdrawer, PID: 15335 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.sticdev30.newdrawer/com.example.sticdev30.newdrawer.MainActivity}: android.content.res.Resources$NotFoundException: String resource ID #0x1

KSMenuItem 是一个包含我的菜单数据的 POJO。在 kmi.id 中,我通知增量整数...

我在等

最佳答案

您可以使用公共(public)方法 inflateMenu 在运行时使用 2 行代码重新膨胀 NavigationView。在这个例子中,我用 new_navigation_drawer_items.xml

重新膨胀
navigationView.getMenu().clear(); //clear old inflated items.
navigationView.inflateMenu(R.menu.new_navigation_drawer_items); //inflate new items.

关于android - NavigationView 中的动态菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31064483/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com