0

私はAndroidの初心者です。ウェブビューと統合されたAdMob広告バナーを使用してフラッシュゲームのAndroidアプリを作成しましたが、ウェブビューをオーバーレイしています。この写真のように表示する必要があります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

多くのユースケースではRelativeLayoutが最初の選択肢かもしれませんが、この単純なビューでは、LinearLayoutを使用します。これははるかに簡単です。

于 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 に答える
0

私はoppisteエラーを受け取りました、私は私のアプリをあなたのものとして表示したいのですが、私はそれを得ることができません、私はあなたが望む答えを得ました。

<?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を上に表示しますWebビューをオーバーレイしていません

于 2015-01-11T22:59:55.270 に答える