我有一个布局,其中包含 2 个彼此相邻的片段。在每个片段中,我都有一个 ViewPager。由于我需要两个 Fragment 看起来相同,因此我对两者使用相同的布局 XML,其中包含一个 ViewPager。
现在,当我测试应用程序时,似乎只有第一个 Fragment 的 ViewPager 可以工作。第二个 Fragment 显示一个 PagerTitleStrip,我可以翻阅它,但它没有显示 ViewPager 中的 Fragments。
为什么第二个 ViewPager 也不显示片段?这是什么原因造成的?问题是他们使用相同的布局吗?无论如何,它不是一个不同的对象吗?
Activity 中的 2 个 Fragment 共享的布局如下所示:
<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" >
<android.support.v4.view.PagerTitleStrip
android:id="@+id/search_mapping_pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:textColor="#fff" />
</android.support.v4.view.ViewPager>
两个 Fragment 都以相同的方式实例化 ViewPager:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_search_mapping,
container, false);
mSectionsPagerAdapter = new SectionsPagerAdapter(mActivity
.getSupportFragmentManager());
mViewPager = (ViewPager) view.findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
return view;
}
编辑:更多代码显示我的SectionsPagerAdapter
:
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int position) {
Fragment fragment = new SuperclassFragment();
Bundle args = new Bundle();
args.putInt(SuperclassFragment.ARG_SECTION_NUMBER, position + 1);
fragment.setArguments(args);
return fragment;
}
...
}
我应该在哪里寻找错误原因的任何提示?如有必要,我当然可以在此处包含更多代码。