>我创建了一个基本的导航菜单抽屉。我想做的是在单击选项时更改导航菜单布局。 例如:我的菜单上有男人、女人、儿童。当我单击Men时,我想在同一个导航抽屉中加载另一个列表,其中包含牛仔裤,衬衫等菜单。
我已经在 ListView 中创建了两个列表,但我无法在单击第一个菜单时膨胀导航抽屉中的列表。 我已经检查了Google和Stackoverflow,但似乎没有答案。
任何帮助将不胜感激。谢谢。
正如您在评论中所说,您要完全更改导航菜单,请不要直接在抽屉布局中制作列表视图或导航视图。
将导航菜单作为抽屉布局中的片段,在片段布局 xml 中,您可以创建列表视图。然后,您可以轻松地将一个片段(包含菜单和子菜单列表)替换为另一个片段。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_layout"
android:background="#ffffff">
//main content view
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The drawer is given a fixed width in dp and extends the full height of
the container. -->
<fragment android:id="@+id/navigation_drawer"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:name="Your's Base menu list fragment"
tools:layout="@layout/drawer_drawer" />
</android.support.v4.widget.DrawerLayout>
希望这对您有所帮助。