3

アプリでタブ + スワイプを使用しようとしていますが、アクティビティの作成時に ADT が提供するナビゲーション タイプ「固定タブ + スワイプ」を使用したいと考えています。

すっごく今、ADT は素敵なコードを吐き出します。これを少し修正しました...

私はコードと何が起こっているかを完全に理解しています...しかし、愚かなダミーフラグの代わりに3つのフラグメントを使用するようにアプリに教えるにはどうすればよいですか? :(

ADT の「ナビゲーション タイプ」を扱うチュートリアルが見つかりません...

ご協力いただきありがとうございます!

public class MainActivity extends FragmentActivity implements ActionBar.TabListener {
SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Set up the action bar.
    final ActionBar actionBar = getActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    // Create the adapter that will return a fragment for each of the three
    // primary sections of the app.
    mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

    // When swiping between different sections, select the corresponding
    // tab. We can also use ActionBar.Tab#select() to do this if we have
    // a reference to the Tab.
    mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
                @Override
                public void onPageSelected(int position) {
                    actionBar.setSelectedNavigationItem(position);
                }
            });
    //Adding Tabs
        actionBar.addTab(actionBar.newTab().setText("Tab 1").setTabListener(this));
        actionBar.addTab(actionBar.newTab().setText("Tab 2").setTabListener(this));
        actionBar.addTab(actionBar.newTab().setText("Tab 3").setTabListener(this));
}

@Override
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
    // When the given tab is selected, switch to the corresponding page in
    // the ViewPager.
    mViewPager.setCurrentItem(tab.getPosition());
}

@Override
public void onTabUnselected(ActionBar.Tab tab,FragmentTransaction fragmentTransaction) {
}

@Override
public void onTabReselected(ActionBar.Tab tab,FragmentTransaction fragmentTransaction) {
}

public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

    @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 = new DummySectionFragment();
        Bundle args = new Bundle();
        args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
        fragment.setArguments(args);
        return fragment;
    }

    @Override
    public int getCount() {
        // Show 3 total pages.
        return 3;
    }
}

public static class DummySectionFragment extends Fragment {
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public DummySectionFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_main_dummy,container, false);
        TextView dummyTextView = (TextView) rootView.findViewById(R.id.section_label);
        dummyTextView.setText(Integer.toString(getArguments().getInt(ARG_SECTION_NUMBER)));
        return rootView;
    }
}
}
4

2 に答える 2

5

フラグメントを設定するためのスイッチケースは簡単で、非常に明確になります。各フラグメントで xml のルート ビューを膨張させます

@Override
public Fragment getItem(int index) {

    Fragment fragment = null;
    switch(index){
    case 0:
         fragment = new Fragment1();
         break;
    case 1:
         fragment = new Fragment2();
         break;
    case 2:
         fragment = new Fragment3();
         break;
    default:
        break;
    }

    //set args if necessary (which it isn't?)
    Bundle args = new Bundle();
    args.putInt(ObjectFragment.ARG_OBJECT, index + 1);
    fragment.setArguments(args);

    //return fragment
    return fragment;
}
于 2013-07-11T12:23:06.303 に答える
3

しかし、愚かなダミー フラグの代わりに 3 つのフラグメントを使用するようにアプリに教えるにはどうすればよいでしょうか?

DummySectionFragmentで参照されgetItem()ていることがわかります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 = new DummySectionFragment();
    Bundle args = new Bundle();
    args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
    fragment.setArguments(args);
    return fragment;
}

別のフラグメントを使用する場合は、提供された(0 から始まるページ番号) をgetItem()指定して、必要なフラグメントを返すように変更します。position

于 2013-03-23T19:27:41.097 に答える