我创建了Tab主机并添加了几个标签。一切正常,但是当我向右滚动时,它继续越过最后一个标签边框进入未定义的暗区,直到Tab主机变得完全不可见。滚动到左侧工作正常。 对这个问题有什么想法吗?
谢谢。
编辑:
<TabHost android:id="@android:id/tabhost"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<View android:layout_width="fill_parent" android:layout_height="0.5dip"
android:background="#000" />
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="#000000">
<HorizontalScrollView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:scrollbars="none"
>
<TabWidget android:id="@android:id/tabs"
android:layout_width="wrap_content" android:layout_height="wrap_content"
/>
</HorizontalScrollView>
</LinearLayout>
<View android:layout_width="fill_parent" android:layout_height="4dp"
android:background="#696969" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="0px" android:layout_height="0px" />
</LinearLayout>
</TabHost>