我正在使用navigation drawer
开发一个andorid应用程序,我有这样的contentview布局:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- As the main content view, the view below consumes the entire
space available using match_parent in both dimensions. -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:dividerHeight="0dp"
android:divider="@android:color/transparent"
android:background="@color/default_color"/>
</android.support.v4.widget.DrawerLayout>
所以我可以在导航抽屉项目点击上添加和替换片段。到目前为止一切都还好。
但是在一种情况下,点击导航抽屉上的项目我需要显示两个片段而不是一个(就像listFragment和细节片段一样)。我该怎么做?我应该在framelayout中添加两个片段吗?但是怎么样?或者我应该使用不同的drawerLayout
更改contentView?如果是,我该怎么做?
答案 0 :(得分:0)
您可以只使用嵌套片段。创建另一个片段,动态创建两个片段并将其添加到其布局中。
欲了解更多信息,请阅读:http://developer.android.com/about/versions/android-4.2.html#NestedFragments