我目前遇到一个看似简单的布局问题。我有一个静态标题(带有徽标和按钮),一个WebView,然后是一个静态页脚(带有中心按钮)。这三个之间似乎有一个空间我无法删除(我将根背景设为红色,因此空间的位置很明显。)
我知道如何让WebView填满整个空间,这样红色背景就消失了吗?
Eclipse也为我的RelativeLayout块提供了以下警告:
此RelativeLayout布局或其LinearLayout父级可能无用;将background属性传输到另一个视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/commonlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF0000"
android:orientation="vertical"
android:padding="0dp"
android:weightSum="10" >
<LinearLayout
android:id="@+id/llheader"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="@drawable/bgx" >
<Button
android:id="@+id/Button_logout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="2dp"
android:background="@drawable/ic_launcher" />
<Button
android:id="@+id/Button_playlist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="2dp"
android:background="@drawable/logo" />
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/lldata"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="8"
android:background="#00FF00" >
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
<LinearLayout
android:id="@+id/llfooter"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_margin="0dp"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"
android:visibility="visible" >
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="@drawable/bgx" >
<Button
android:id="@+id/issue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/ic_launcher"
android:textColor="#FFFFFF" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
任何想法如何让WebView填满这整个空间让这个红色 背景消失了?
您应该尝试在webview的布局中使用重量标记为1。
或删除webview的布局父级,并直接使用权重为1的webview。