android webview布局占用剩余空间

时间:2012-04-13 20:21:16

标签: android android-layout

我想创建,似乎是一个简单的布局,但我遇到了一些问题。 布局包括一个标题,一个webview主体和一个底部的页脚横幅,如附图所示。

enter image description here

我需要webview来获取页眉和页脚之间的所有剩余空间。

我试过这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:background="@drawable/back"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <ImageView  
android:id="@+id/banner"
     android:layout_height="wrap_content"
     android:layout_width="wrap_content" 
     android:src="@drawable/banner" /> 
<WebView  
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bck"
    android:layout_weight="2"
    android:layout_gravity="center"/>
  <RelativeLayout   
     android:layout_width="wrap_content"   
     android:layout_height="wrap_content"
     android:layout_weight="4"> 
        <com.mobclix.android.sdk.MobclixMMABannerXLAdView 
                android:id="@+id/banner_adview"
                android:layout_width="320dip"
                android:layout_height="50dip"
                android:layout_gravity="center"
                android:layout_alignParentBottom="true" />
   </RelativeLayout>

2 个答案:

答案 0 :(得分:3)

将所有这些内容放在RelativeLayout中并在webview中使用layout_below =“@ id / header_banner”和layout_above =“@ + id / footer_banner”

答案 1 :(得分:1)

这对你有用:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/ddd"
    android:orientation="vertical" >
     <ImageView  
     android:id="@+id/banner1"
     android:layout_height="wrap_content"
     android:layout_width="fill_parent" 
     android:src="@drawable/atm" /> 
    <WebView  xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/webview1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" 
    />
    <ImageView  
     android:id="@+id/banner2"
     android:layout_height="wrap_content"
     android:layout_width="fill_parent"
     android:layout_weight="0" 
     android:src="@drawable/atm" /> 
</LinearLayout>