0

我正在尝试开发一个基于标签的应用程序。每个选项卡都有其片段。其中之一有 ViewPager,而 ViewPager 有自己的页面。我通过在这个 viewpager 中滚动来从另一个移动。

当我第一次打开应用程序时,没有问题。但是,当我从该选项卡移动并再次访问它时,它不会显示 viewpager 内容,也不会触发 FragmentPagerAdapter 类。

标签 A - 标签 B - 标签 C

Tab C 片段有 ViewPage。

ViewPage 有自己的页面。

public class FragmentC extends Fragment {

public static final String ARG_SECTION_NUMBER = "section_number";
 static ViewPager C_mViewPager; 
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {


    C_mViewPager = (ViewPager)inflater.inflate(R.layout.fragmentC, container,false);
             C_SectionsPagerAdapter mC_PagerAdapter=new C_SectionsPagerAdapter(MainActivity.fragmentManagerv4);
             C_mViewPager.setAdapter(mC_PagerAdapter);


 return C_mViewPager;

}
public class C_SectionsPagerAdapter extends FragmentPagerAdapter {


    public C_SectionsPagerAdapter (FragmentManager fm) {
        super(fm);
    }

    @Override
    public Fragment getItem(int i) {
        Fragment fragment = null ;
         Bundle args;
        switch (i) {
        case 0:

            fragment=new A_SubFragment();
            break;

        case 1:

            fragment = new B_SubFragment();
            break;

        case 2:

        fragment = new C_SubFragment();
        break;

        case 3:

        fragment = new D_SubFragment();
        break;



}
        return fragment;
    }

    @Override
    public int getCount() {
        return 4;
    }

    @Override
    public CharSequence getPageTitle(int position) {
        switch (position) {
            case 0: return getString(R.string.title_section1).toUpperCase();
            case 1: return getString(R.string.title_section2).toUpperCase();
            case 2: return getString(R.string.title_section3).toUpperCase();
            case 3: return getString(R.string.title_section4).toUpperCase();

        }
        return null;
    }
}
public static class A_SubFragment extends Fragment {


    public A_SubFragment() {
    }

    public static final String ARG_SECTION_NUMBER = "section_number";

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        RelativeLayout theLayout=(RelativeLayout)inflater.inflate(R.layout.a_sub_fragment, container,false);
//...
 return theLayout;}}
} 

片段 C;

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" />
4

1 回答 1

0

我得到了答案,我使用 FragmentStatePagerAdapter 而不是 FragmentPagerAdapter

于 2013-01-02T08:04:58.487 回答