gpt4 book ai didi

java - 包裹在 Horizo​​ntalScrollView 中的 TabWidget 不会随 ViewPager 一起滚动

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:13:54 26 4
gpt4 key购买 nike

我必须使用 TabHost 代替 ActionBarTabs 并使它们可滚动我将我的 TabWidget 包装在Horizo​​ntalScrollView,但 Horizo​​ntalScrollView 不会根据 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() 时,水平 ScrollView 会发生变化。

另一件需要注意的事情是 .scrollTo(x,y) 滚动使得 x 位于屏幕的左侧。您可能需要对选项卡的坐标和水平 ScrollView 的宽度进行一些计算,以正确定位内容。您不能调用 .scrollTo(position,0) 并让它按照您喜欢的方式工作(除非您的标签为 1 像素宽)。

关于java - 包裹在 Horizo​​ntalScrollView 中的 TabWidget 不会随 ViewPager 一起滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9650486/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com