tabhost中的水平滚动视图不起作用或使我的内容消失

时间:2012-07-22 13:42:53

标签: android android-tabhost horizontalscrollview

这是我的main.xml,其中包含tabhost:

问题是水平滚动视图不起作用。如果我将相对布局更改为linearlayout标签是可滚动的,但我看不到主要内容与我的活动 - 我只看到标签。

我还尝试完全删除包含tabwidget的线性布局,但没有任何改变。

如果您需要任何其他xml,请告诉我。

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@android:id/tabhost" 
    android:paddingTop="@dimen/tab_space_top"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <RelativeLayout android:id="@+id/tab_relative_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        >
        <HorizontalScrollView android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true"
                android:scrollbars="none">
                <LinearLayout android:id="@+id/tab_linear_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TabWidget android:id="@android:id/tabs"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content">
            </TabWidget>
            </LinearLayout>
            </HorizontalScrollView>
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:layout_below="@android:id/tabs">

        </FrameLayout>

    </RelativeLayout>
</TabHost>

任何帮助?

1 个答案:

答案 0 :(得分:1)

this sample中列出的方法可以解决您的问题。