ViewPager を使用するために FrameLayout のフラグメントを置き換えることは可能.replace()
ですか? どちらも ViewGroup であるためです。
たとえば、xmlでは、私は
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<FrameLayout
android:id ="@+id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
FrameLayout を、実行時にフラグメントの ViewPager にフラグメントを保持している id コンテンツに置き換えたいと思います。出来ますか??