包含在Horizo​​ntalScrollView中的TabWidget不会使用ViewPager滚动

时间:2012-03-10 21:53:59

标签: java android android-viewpager horizontalscrollview

我必须使用TabHost代替ActionBarTabs并使其可滚动我将TabWidget包裹在HorizontalScrollView中,但{ {1}}不会根据HorizontalScrollView自行滚动。我尝试过几种不同的方式使用scrollTo和fullScroll,但它没有改变任何东西。我需要做些什么才能使其正常工作?

ViewPager

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <HorizontalScrollView
        android:id="@id/horizontalScrollView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fillViewport="true"
        android:scrollbars="@null" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" />
    </HorizontalScrollView>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="0" />

    <android.support.v4.view.ViewPager
        android:id="@id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

</LinearLayout>

2 个答案:

答案 0 :(得分:5)

调用.refreshDrawableState()方法后调用.scrollTo(x,y)时,水平滚动视图会发生变化。

需要注意的另一件事是.scrollTo(x,y)滚动,x位于屏幕左侧。您可能需要使用选项卡的坐标和水平滚动视图的宽度进行一些计算,以正确定位。你不能打电话给.scrollTo(position,0),让它按照你想要的方式工作(除非你的标签是1像素宽)。

答案 1 :(得分:-1)

ViewPager拥有滚动行为的大脑。

我会从你的布局中删除Horizo​​ntalScrollView。其余的看起来很好。

然后我会检查这个谷歌提供的代码示例,我将基于您想要完成的ViewPager界面:http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentTabsPager.html

您会注意到上面声明的相应方法与滚动没有任何关系,除了设置要滚动到的页面。 ViewPager在内部处理平滑滚动。

    @Override
    public void onTabChanged(String tabId) {
        int position = mTabHost.getCurrentTab();
        mViewPager.setCurrentItem(position);
    }

    @Override
    public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
    }