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 は、新しいフラグメントを動的に追加する必要がある場所です。