0

我是 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>
4

3 回答 3

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>

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

于 2015-01-11T22:59:55.270 回答
0

Even though RelativeLayout might be the first choice for many use cases, for this simple view I would use a LinearLayout, that's much easier.

于 2013-03-15T17:51:30.480 回答
0

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

<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" />
于 2013-03-15T17:52:00.507 回答