現在、一見単純なレイアウトに問題があります。静的ヘッダー (ロゴとボタン付き)、WebView、静的フッター (中央のボタン付き) があります。これら 3 つの間に削除できないスペースがあるようです (ルートの背景を赤にしたので、スペースがどこにあるかは明らかです)。
この赤い背景がなくなるように、WebView でこのスペース全体を埋める方法はありますか?
また、Eclipse は、RelativeLayout ブロックに対して次の警告を表示しています。
この RelativeLayout レイアウトまたはその LinearLayout 親はおそらく役に立たないでしょう。背景属性を他のビューに転送します
<?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>