是否可以.replace()
用 ViewPager 替换 FrameLayout 中的片段?因为两者都是 ViewGroups。
例如,在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" />
我想用在运行时将片段保存到片段的 ViewPager 的 id 内容替换 FrameLayout。可能吗??