Webview с вкладкой ниже - PullRequest
0 голосов
/ 25 мая 2011

У меня есть панель вкладок в нижней части моего экрана. 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>

На одной из страниц у меня есть веб-просмотр. 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>

Проблема в том, что веб-страница в веб-представлении слишком длинная, панель вкладок исчезает. Как я могу решить эту проблему?

С уважением,

Joachim

1 Ответ

0 голосов
/ 25 мая 2011

Я сделал модификацию вашего кода.Теперь он работает согласно ожиданиям.

<?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>

Не забудьте проголосовать, если мой ответ будет вам полезен.

...