在web中将webview高度设置为其父级的70%

时间:2015-12-26 15:25:16

标签: android android-webview android-linearlayout

我试图让webview只占据线性布局高度的70%,广告横幅占据剩余的30%。我的代码所做的是将webview宽度设置为70%而不是高度。这是我的代码

    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/primary_light">

    <WebView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="7"
        android:background="@android:color/transparent" />

    <com.amazon.device.ads.AdLayout
        android:id="@+id/adview"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:layout_gravity="bottom" />
</LinearLayout>

我不确定我做错了什么,这里也有类似的问题,但解决方案似乎不起作用。可能我错过了一些明显的东西。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

我认为这种情况正在发生,因为LinearLayout的默认方向是水平的,这就是权重属性应用于宽度而不是高度的原因。在LinearLayout中使用它,我认为它将解决您的问题。

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"//This is the line that you need to add.
    android:background="@color/primary_light">