我发现了在操作栏的选项卡中使用 Listfragment 的解决方案
- 我面临与那里描述的相同的问题,但不知何故,这个解决方案对我不起作用。
- 我想为大于 4.0 的 android 版本编写一个应用程序。
- 如果您生成一个新项目并选择:Fixed Tabs+Swipe,我使用了用于生成带有标签的 Swipe View 的 Android 示例代码
一个 Fragment 应该是 ListFragment,所以我想到了这个解决方案,但问题是 MainActivity 使用:导入 android.support.v4 支持。这是我的 SectionsPagerAdapter 的一部分,其余代码与预链接线程相同。
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a DummySectionFragment (defined as a static inner class
// below) with the page number as its lone argument.
Fragment fragment = null;
switch (position) {
case 0:
fragment = new ControlFragment();
case 1:
fragment = (Fragment)new WrapperListFragment();
}
return fragment;
}
我猜这里的代码使用了较新的包,那么如何将这两者结合起来。一般来说,我想使用带有滑动功能的操作栏,并且一个片段应该显示一个列表视图。
提前致谢。