Webview与下面的tabbar

时间:2011-05-25 12:20:46

标签: android webview tabbar

我的屏幕底部有一个标签栏。 XML文件如下所示:

<TabHost android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@android:id/tabhost"
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:background="@color/background">
    <TabWidget
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@android:id/tabs"
    android:layout_alignParentBottom="true" />
     <FrameLayout
     android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@android:id/tabcontent" >

    </FrameLayout>
   </RelativeLayout>
</TabHost>

在其中一个页面上,我有一个webview。 XML的文件:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/background"

    >

    <RadioGroup 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:orientation="horizontal"
        android:gravity="center_horizontal"

        android:id="@+id/group1"

    > 


<nl.smartcityguide.geurenkleuren.SegmentedControlButton android:checked="false" android:text="@string/string1" android:id="@+id/option1" />
<nl.smartcityguide.geurenkleuren.SegmentedControlButton android:checked="false" android:text="@string/string2" android:id="@+id/option2" />

</RadioGroup>


<WebView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/webview1"

>
</WebView>



</LinearLayout>

问题是webview中的网页太长,标签栏消失了。我该如何解决这个问题?

亲切的问候,

勒夫

1 个答案:

答案 0 :(得分:0)

我修改了你的代码。现在它按照期望工作。

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/background"

    >

<WebView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/webview1"
    android:layout_alignParentBottom="true"
>
</WebView>
    <RadioGroup 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:orientation="horizontal"
        android:gravity="center_horizontal"

        android:id="@+id/group1"
        android:layout_above="@+id/webview1"
    > 


<nl.smartcityguide.geurenkleuren.SegmentedControlButton android:checked="false" android:text="@string/string1" android:id="@+id/option1" />
<nl.smartcityguide.geurenkleuren.SegmentedControlButton android:checked="false" android:text="@string/string2" android:id="@+id/option2" />

</RadioGroup>

如果我的回复对您有帮助,不要忘记投票。

由于 迪帕克