3

私はandoridアプリケーションを開発してnavigation drawerおり、次のようなコンテンツビューのレイアウトを持っています:

<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>

そのため、ナビゲーション ドロワー アイテムのクリックでフラグメントを追加および置換できます。今まで大丈夫です。

しかし、あるケースでは、ナビゲーション ドロワーのアイテムをクリックすると、1 つではなく 2 つのフラグメントを表示する必要があります ( listFragment と details フラグメントのように)。どうすればいいですか?フレームレイアウトに 2 つのフラグメントを追加する必要がありますか? しかし、どのように?または、別の contentView を変更する必要がありdrawerLayoutますか? はいの場合、どうすればこれを行うことができますか?

4

1 に答える 1