水平滚动视图滚动更改选项卡焦点

时间:2012-09-14 15:03:42

标签: android android-tabhost tabwidget horizontalscrollview

我在水平滚动视图中有一个标签小部件。我遇到的问题是,当我滚动浏览滚动视图时,选项卡小部件中的当前选项卡会发生变化,并且由于此ontabchange事件处理程序已执行。

为了阻止这种情况,我试图处理滚动浏览选项卡并返回true的滚动视图。但不能很好地做到这一点。

有人可以帮忙吗?

提前致谢!

1 个答案:

答案 0 :(得分:0)

在标签xml中尝试此操作

<HorizontalScrollView
    android:layout_width="fill_parent"
    android:layout_height="200dp">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="200dp"
        android:orientation="horizontal">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/src" />

    </LinearLayout>
</HorizontalScrollView>