5

シンプルなレイアウトに見えるものを作成したいのですが、いくつか問題があります。レイアウトは、添付のスケッチに見られるように、ヘッダー、Web ビューである本文、下部のフッター バナーで構成されます。

ここに画像の説明を入力

ヘッダーとフッターの間の残りのスペースをすべて取得するには、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>

4

2 に答える 2

4

それらすべてを RelativeLayout 内に配置し、webview で layout_below="@id/header_banner" および layout_above="@+id/footer_banner" を使用します

于 2012-04-13T20:27:20.737 に答える
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>
于 2012-04-13T20:30:05.410 に答える