使用SectionsPagerAdapter android

时间:2013-08-30 15:21:16

标签: android android-fragments

我有一个sectionsPagerAdapter,用作ViewPager的适配器。

    mSectionsPagerAdapter = new SectionsPagerAdapter(
            getSupportFragmentManager());

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

我有3个片段,我想在点击按钮时切换2个片段?

1 个答案:

答案 0 :(得分:7)

我猜你在使用ADT创建新活动并指定带有标签的导航类型时会自动生成SectionsPagerAdapter。如果是这种情况,那么你的SectionsPagerAdapter正在扩展FragmentPagerAdapter,whose documentation is located here

如果您真的想将ViewPager用于所讨论的内容,请查看指向Android开发人员参考的链接。但是,听起来,你想要做更类似于what's discussed in this Q/A的事情。也许你可以详细说明你想要完成的任务?