0
    public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

    @Override
    public Fragment getItem(int i) {
        Fragment fragment = new DummySectionFragment();
        Bundle args = new Bundle();
        args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, i + 1);
        fragment.setArguments(args);
        return fragment;
    }

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

    @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();
        }
        return null;
    }
}

/**
 * A dummy fragment representing a section of the app, but that simply displays dummy text.
 */
public static class DummySectionFragment extends Fragment {
    public DummySectionFragment() {
    }

    public static final String ARG_SECTION_NUMBER = "section_number";

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        TextView textView = new TextView(getActivity());
        textView.setGravity(Gravity.CENTER);
        Bundle args = getArguments();
        textView.setText(Integer.toString(args.getInt(ARG_SECTION_NUMBER)));
        return inflater.inflate(R.layout.fragment_content1, container, false);
    }
}
}

上記のコードは、SDK for ViewPagerのテンプレートであり、1ページから1ページにスワイプすると、テキスト1から3のみが表示されます。問題は、そのテキストをスワイプしたときにどのように置き換えて独自のレイアウトxmlを配置できるか、そしてこの機能でWebViewを使用できるかどうかです。たとえば、アクティビティが読み込まれるとgoogle.comに移動し、他のページにスワイプすると、スワイプするたびにWebViewのURLが変更されますか?誰かが私を助けてくれることを願っています...

4

2 に答える 2

1

クラス DummySectionFragment と同様に、android.support.v4.app.Fragment から拡張するクラスを作成する必要があります。次に、メソッド getItem(int i) に、各インデックスに必要な各クラスをインスタンス化する必要があります。メソッド getCount() は、インスタンス化するフラグメントの数を返す必要があります。

于 2012-08-27T21:18:11.927 に答える
0

viewpager.setCurrentItem(index)ここindexで、目的のフラグメント インデックスです。

于 2012-08-26T06:34:30.817 に答える