在其他片段中替换ViewPager

时间:2015-01-18 22:10:59

标签: android android-activity android-fragments android-viewpager

我的主要活动中有一个viewpager,而viewpager包含几个页面(恰好是几个片段)。我想从我的viewpager转到另一个不在viewpager中的片段。我怎样才能做到这一点?

这是我的activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.slpd.Activities.SLPDActivity">

    <com.slpd.SlpdViewPager
        android:id="@+id/viewPager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

你为什么要去另一个片段?

如果您要转换到一个或多个片段,只需添加一个类似于SLDPActivity的新活动,并使用另一个ViewPager扩展布局。

如果只想转换到一个片段,为什么不首先简单地将其作为新活动?