导航类型(固定标签+滑动)

时间:2013-05-02 10:36:03

标签: android android-viewpager android-tabhost swipe

在我的应用程序中,我有一个带有tabwidget的tabhost,它有几个Tabs。 现在我需要一个选项卡,在tabcontent里面显示一个计划网格,允许向右和向左滑动以移动几个月。但是我需要选项卡保持修复,只有时间表滑动。

导航类型(固定标签+刷卡)允许我这样做?根据我的理解,此导航允许滑动但选项卡不会保持不变。

我需要什么? 感谢您的帮助和关注。

1 个答案:

答案 0 :(得分:1)

我想说可能,在tabhost和tabwidget上保留你的代码。

所以我假设其中一个标签正在调用一个可能名为Schedule.class的Activity,默认情况下tabhost不允许任何滑动来更改标签功能,这很好。

因此,在您的计划活动中,您将使用 ViewPager ,我在本文中学习了如何使用它:http://thepseudocoder.wordpress.com/2011/10/05/android-page-swiping-using-viewpager/

这很容易被理解。您可以尝试使用它,希望我回答您的问题

更新:这是一个示例

Schedule.class

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

    ViewPager viewPager = (ViewPager) findViewById(R.id.viewPager);

    List<Fragment> fragments = new ArrayList<Fragment>();
    fragments.add(Fragment.instantiate(this, Fragment1.class.getName()));
    fragments.add(Fragment.instantiate(this, Fragment2.class.getName()));
    fragments.add(Fragment.instantiate(this, Fragment3.class.getName()));

    MyFragmentAdapter miscFragmentAdapter = new MyFragmentAdapter(getSupportFragmentManager(), fragments);

    viewPager.setAdapter(miscFragmentAdapter);
}

MyFragmentAdapter.class

public class MyFragmentAdapter extends FragmentPagerAdapter {

    private List<Fragment> fragments;

    public MiscFragmentAdapter(FragmentManager fragmentManager, List<Fragment> fragments) {
        super(fragmentManager);
        this.fragments = fragments;
    }

    @Override
    public Fragment getItem(int position) {
        return this.fragments.get(position);
    }

    @Override
    public int getCount() {
        return this.fragments.size();
    }
}

schedule.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</LinearLayout>

Fragment1.class或Fragment2.class或Fragment3.class

public class Fragment1 extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        if (container == null) {
            // We have different layouts, and in one of them this
            // fragment's containing frame doesn't exist.  The fragment
            // may still be created from its saved state, but there is
            // no reason to try to create its view hierarchy because it
            // won't be displayed.  Note this is not needed -- we could
            // just run the code below, where we would create and return
            // the view hierarchy; it would just never be used.
            return null;
        }
        return (LinearLayout) inflater.inflate(R.layout.fragment1, container, false);
    }
}

fragment1是一个简单的布局,里面有你想要的任何东西。