Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/179.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 安卓系统:;导航类型:固定选项卡+;“刷卡”;_Android_Android Layout_Tabs - Fatal编程技术网

Android 安卓系统:;导航类型:固定选项卡+;“刷卡”;

Android 安卓系统:;导航类型:固定选项卡+;“刷卡”;,android,android-layout,tabs,Android,Android Layout,Tabs,我正在尝试在应用程序中使用Tabs+Swipe,并希望使用ADT在创建活动时提供的导航类型“Fixed Tabs+Swipe” 所以现在ADT吐出了很好的代码,我稍微修改了一下 我完全理解代码和正在发生的事情。。。但我如何教应用程序使用我的三个片段而不是愚蠢的虚拟碎片呢( 我找不到任何关于ADTs“导航类型”的教程 谢谢你的帮助 public class MainActivity extends FragmentActivity implements ActionBar.TabListener

我正在尝试在应用程序中使用Tabs+Swipe,并希望使用ADT在创建活动时提供的导航类型“Fixed Tabs+Swipe”

所以现在ADT吐出了很好的代码,我稍微修改了一下

我完全理解代码和正在发生的事情。。。但我如何教应用程序使用我的三个片段而不是愚蠢的虚拟碎片呢(

我找不到任何关于ADTs“导航类型”的教程

谢谢你的帮助

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;
    }
}
}
但是我如何教应用程序使用我的三个片段而不是愚蠢的虚拟碎片呢

您会注意到,
部分的
getItem()
中引用了
DummySectionFragment

@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;
}

如果要使用不同的片段,请修改
getItem()
以返回所需的片段,给定提供的
位置(基于0的页码)。

设置片段的开关盒非常简单,而且非常清晰。让每个片段在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;
}

谢谢,现在我把我的GeTeMe()改成了一个“位置”的转换用例,在我的主活动结束时增加了三个类(每个片段一个。java……有没有办法更好地解决我的问题?):乔纳斯:因为我不知道你认为“更好或更好”,所以我真的不能回答。我通常将片段作为单独的公共Java类,因为它们可能会有点长。否则,你所拥有的听起来是合理的。好吧:)Muchas gracias@commonware!Jonas-我一直面临着同样的问题,我想知道您是否可以将您的“getItem()共享给一个switch case”,并且可能是您完整的“public Fragment getItem(int position)”示例/编辑。我只是在学习Java,和你一样,我理解片段的概念,但掌握这个示例的窍门并不容易。我假设它沿着的逻辑线是arg=1,然后调用片段xxx?我已经按照@commonware的建议设置了新的片段。提前谢谢。你说的ObjectFragment是什么意思?我遇到了一个稍微修改过的解决方案,它解决了代码的ObjectFragment部分。它对我很管用。:)