0

我想扩展 webview1 视图以填充剩余空间。使按钮看起来总是在屏幕底部。我使用 android:layout_weight 属性为单个孩子分配权重。但它似乎不起作用。我该怎么做,谁能告诉我什么

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ScrollView style="@style/ScrollView" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingBottom="8dp"
            android:paddingLeft="12dp"
            android:paddingRight="12dp"
            android:paddingTop="8dp" >

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_marginTop="12dp"
                android:orientation="vertical"
                android:layout_weight="1" >      <---here assign a weight

                <WebView
                    android:id="@+id/webview1"
                    **style="@style/update_text" />**
            </LinearLayout>

            <!-- h-line -->

            <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp" >

                <ImageView
                    android:id="@+id/line_end"
                    style="@style/form_h_line" />
            </RelativeLayout>

            <!-- buttons -->

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp"
                android:orientation="horizontal" >

                <Space
                    android:layout_width="12dp"
                    android:layout_height="wrap_content"/>

                <Button
                    android:id="@+id/button_ok"
                    style="@style/base_button"
                    android:layout_width="12dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="2"
                    android:text="OK"/>

                <Space
                    android:layout_width="12dp"
                    android:layout_height="wrap_content"/>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>

</FrameLayout>

原因是,因为它在Framelayout中工作,所以webview1不能自动展开。

4

2 回答 2

0

添加weightSum="" property to your LinearLayout

所以使用跟随并根据需要管理它with wiegtSum and layout_weight也使用LinearLayout而不是<Space>标签

      <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="12dp"
            android:weightSum="3"
            android:orientation="horizontal" >

            <LinearLayout
                android:layout_width="0dp"
                android:layout_weight="1" 
                android:layout_height="wrap_content"/>

            <Button
                android:id="@+id/button_ok"
                style="@style/base_button"
                android:layout_width="12dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="OK"/>
           <LinearLayout
                android:layout_width="0dp"
                android:layout_weight="1" 
                android:layout_height="wrap_content"/>

        </LinearLayout>
于 2013-08-03T05:46:11.970 回答
0

fill_parent/由于明显的原因match_parent不起作用- 如果确实如此,那将毫无用处。ScrollViewScrollView

ScrollView应该将fillViewPort属性设置为true. 如果需要,这会使ScrollView' 的子级扩展到 ' 的高度。ScrollView如果孩子大于屏幕,则该属性无效。

于 2013-08-09T08:19:26.147 回答