0

我对整个 Fragment 的思维方式有点困惑。我遵循了一个关于如何创建一个ViewPager类似应用程序Fragments的教程Google Play

我有这样的 TabFragment 类:

public class SwipeyTabFragment extends SherlockFragment {

    @Override
    public void onCreate(Bundle b) {
        super.onCreate(b);
        Log.e("FRAGMENT: ", "Hello World!"); 
    }

    public static Fragment newInstance(String title) {
        SwipeyTabFragment f = new SwipeyTabFragment();
        Bundle args = new Bundle();
        args.putString("title", title);
        f.setArguments(args);
        return f;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        ViewGroup root = (ViewGroup) inflater.inflate(R.layout.fragment_swipeytab, null);
        final String title = getArguments().getString("title");
        ((TextView) root.findViewById(R.id.text)).setText(title);
        return root;
    }
}

我知道该onCreateView方法初始化布局和控件ButtonListView等等。

到我的FragmentAdapter

private class SwipeyTabsPagerAdapter extends FragmentPagerAdapter implements SwipeyTabsAdapter {

        private final Context mContext;

        public SwipeyTabsPagerAdapter(Context context, FragmentManager fm) {
            super(fm);
            this.mContext = context;
        }

        @Override
        public Fragment getItem(int position) {
            return SwipeyTabFragment.newInstance(TITLES[position]);
        }

        @Override
        public int getCount() {
            return TITLES.length;
        }

        public TextView getTab(final int position, SwipeyTabs root) {
            TextView view = (TextView) LayoutInflater.from(mContext).inflate(R.layout.swipey_tab_indicator, root, false);
            view.setText(TITLES[position]);
            view.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                    mViewPager.setCurrentItem(position);
                }
            });
            return view;
        }

    }

这只会基于字符串数组构造一个新选项卡,它将设置文本和Fragment.

所以这就是我感到困惑的地方。例如,我想要几个具有不同布局的片段,以及当用户按下时的不同交互方式ButtonPicture或其他任何东西。我该怎么做?

谢谢。

4

1 回答 1

1

所有“用户按下按钮”的内容都在片段中处理,您当然可以在需要时回调Activity(参见此处)。您必须为不同的布局、逻辑创建不同的片段类。等并将它们返回到getItem. 你可以有一个 FirstPageFragment 和一个 SecondPageFragment,然后在getView. 这只有在这些片段当然具有不同的功能时才有意义。希望我的意思很清楚;)

编辑:至于您的评论:

我不知道你到底想做什么,但你SwipeyTabFragment已经在它自己的文件中定义了。然后拿这个,修改它,给它另一个布局和其他功能,然后把它叫做 OtherFragment 或其他什么。假设你想在你的 App 中有 2 个不同的“页面”——getCount()适配器中的方法定义了你的“页面”的数量ViewPager,所以让它返回两个。在getItem()方法中,if position是0,让它返回你的SwipeyFragmentelseposition是1)让它返回你的新的OtherFragment。现在你有ViewPager2 个不同的 Fragment 可以用于完全不同的目的。

于 2013-03-07T09:49:07.697 回答