-1

onListItemClickスライド メニューのように、イベントが発生するたびに右からフラグメントが表示されるようにします。フラグメントを実装したとします。どうすれば現れる​​ようになりますか? 私はそれを理解できないようです。お時間をいただきありがとうございます。

編集: これは、フラグメントを追加するビューグループです:

<TabHost
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal" />


            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp" />

            <android.support.v4.view.ViewPager
                android:id="@+id/tabviewpager"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="16dp"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:layout_marginTop="16dp" >

            </android.support.v4.view.ViewPager>
    </LinearLayout>

</TabHost>

TabViewPager は、アクティビティがインスタンス化されたときにフラグメントを追加する場所であり、ans は、新しいフラグメントを動的に追加する必要がある場所です。

4

2 に答える 2

0

少しレイアウトが異なりますが、私の質問があなたの質問も解決すると確信しています:

Android フラグメント サイドバー

于 2013-03-19T04:52:28.107 に答える
0

これはライブラリです:

https://github.com/jfeinstein10/SlidingMenu

SlidingMenu はさまざまな方法でプッシュできます。最初に試して、エラーが発生したときにここに戻る必要があると思います。喜んでお手伝いさせていただきます。

于 2013-01-17T17:26:00.043 に答える