Android - Tabhost (Tabwidget)问题与多个选项卡



我的列表中有五个选项卡,当TabActivity启动时,您可以看到前三个选项卡,然后如果我向右滚动,其他两个也会显示出来。我遇到的问题是,接下来的两个选项卡需要点击两次才能开始,反之亦然,如果最后三个选项卡显示在屏幕上,则前两个选项卡。

拜托,如果有人知道如何解决这个烦人的东西,我将不胜感激。

提前感谢!

编辑:

我发现,真正的问题是,当我滚动到结束(左或右),这导致任何标签被点击两次才能工作,有人认识到这一点?我发现它可以在滚动到最后(向左或向右)时点击一次,但只能在3秒后。如果我马上点击,需要再次点击才能工作。

My code (xml):

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <HorizontalScrollView
        android:id="@+id/scroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#000000"/>
    </HorizontalScrollView>
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</LinearLayout>

您是否想尝试ViewFlipper(就像在新的Android市场中一样)

这是完整的代码,

设置Android中ViewPager的默认页面

听起来你可能会失去对制表符的关注。

你是否尝试过实现:

android.view.ViewTreeObserver.OnScrollChangedListener

并在触发时将焦点重新设置在TabHost上?

你也可以尝试在TabHost

中使用setOverScrollMode()

相关内容

  • 没有找到相关文章

最新更新