android布局叠加问题

时间:2013-03-15 17:44:49

标签: android xml layout admob

我是android的初学者。我使用webview和集成的admob广告横幅创建了一个flash游戏Android应用程序,但它覆盖了webview。我需要它看起来像这张照片http://i46.tinypic.com/2cosrjp.png 这是我的代码:

        <?xml version="1.0" encoding="utf-8"?>

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<RelativeLayout
android:id="@+id/lay"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</RelativeLayout>

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="a1513fab869115a"
    ads:loadAdOnCreate="true"
    ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" />

 </RelativeLayout>

3 个答案:

答案 0 :(得分:0)

尽管RelativeLayout可能是许多用例的首选,但对于这个简单的视图,我会使用LinearLayout,这样更容易。

答案 1 :(得分:0)

在您的webView视图中添加android:layout_below="+id/lay"

<RelativeLayout
android:id="@+id/lay"
android:layout_below="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</RelativeLayout>

在广告视图中添加android:layout_alignParentTop="true"

<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
ads:adSize="BANNER"
ads:adUnitId="a1513fab869115a"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" />

答案 2 :(得分:0)

我得到了相反的错误,我希望我的应用程序显示为你的,我无法得到它,我得到了你想要的答案。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:weightSum="1">


    <com.google.android.gms.ads.AdView android:id="@+id/adView"
        android:layout_width="355dp"
        android:layout_height="wrap_content"
        ads:adUnitId="000000000000000000"
        ads:adSize="BANNER"
        android:layout_gravity="center_horizontal|bottom" />

    <WebView
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:id="@+id/tropas"
        android:layout_weight="1.01" />

</LinearLayout>

这是我的代码并在顶部显示Admob不覆盖webview