我有這樣的佈局:動態菜單中NavigationView
<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菜單文件夾。
我想製作dinamicament菜單,即在代碼中,我應該安裝'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:致命例外: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我告訴增量整數...
我waitning
結帳我的答案在這裏:http://stackoverflow.com/a/30706233/3544839 – Moinkhan
請參閱我的編輯。 –