我必须使用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>
答案 0 :(得分:5)
调用.refreshDrawableState()
方法后调用.scrollTo(x,y)
时,水平滚动视图会发生变化。
需要注意的另一件事是.scrollTo(x,y)
滚动,x
位于屏幕左侧。您可能需要使用选项卡的坐标和水平滚动视图的宽度进行一些计算,以正确定位。你不能打电话给.scrollTo(position,0)
,让它按照你想要的方式工作(除非你的标签是1像素宽)。
答案 1 :(得分:-1)
ViewPager拥有滚动行为的大脑。
我会从你的布局中删除HorizontalScrollView。其余的看起来很好。
然后我会检查这个谷歌提供的代码示例,我将基于您想要完成的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) {
}