java – 包含在HorizontalScrollView中的TabWidget不会使用ViewPager滚动
作者:互联网
我不得不使用TabHost代替ActionBarTabs并使它们可滚动我将TabWidget包装在HorizontalScrollView中,但HorizontalScrollView不会根据ViewPager滚动自身.我尝试过几种不同的方式使用scrollTo和fullScroll,但它没有改变任何东西.我需要做些什么才能使其正常工作?
<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>
@Override
public void onTabChanged(String tabId) {
int position = mTabHost.getCurrentTab();
mViewPager.setCurrentItem(position);
mHorizontalScrollView.scrollTo(position, 0);
}
@Override
public void onPageScrolled(int position, float positionOffset,
int positionOffsetPixels) {
mHorizontalScrollView.scrollTo(position, 0);
}
解决方法:
调用.scrollTo(x,y)方法后调用.refreshDrawableState()时,水平滚动视图将发生变化.
需要注意的另一件事是.scrollTo(x,y)滚动使得x位于屏幕的左侧.您可能需要使用选项卡的坐标和水平滚动视图的宽度进行一些计算,以正确定位.你不能调用.scrollTo(position,0)并让它以你想要的方式工作(除非你的标签是1像素宽).
标签:java,android,android-viewpager,horizontalscrollview 来源: https://codeday.me/bug/20190626/1291587.html