Android WebMob AdMob не отображается - PullRequest
0 голосов
/ 20 июля 2011

Я хочу использовать Google добавляет в нижней части моей страницы .. в эмуляторе он правильно отображает добавление, но в устройстве он не
он дает мне ..

07-20 06:16:24.931: WARN/webcore(4289): Can't get the viewWidth after the first layout
07-20 06:16:25.101: WARN/Ads(4289): Invalid unknown request error: Cannot determine request type. Is your ad unit id correct?
07-20 06:16:25.111: INFO/Ads(4289): onFailedToReceiveAd(Invalid Google Ad request.)
07-20 06:16:28.957: WARN/PowerManagerService(175): Timer 0x7->0x3|0x0
07-20 06:16:28.957: INFO/PowerManagerService(175): Ulight 7->3|0
07-20 06:16:30.351: WARN/InputManagerService(175): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4a43b8f8
07-20 06:16:45.961: WARN/PowerManagerService(175): Timer 0x3->0x1|0x0
07-20 06:16:45.961: INFO/PowerManagerService(175): Ulight 3->1|0

Я не могу понять, в чем проблема?тот же код правильно работает на эмуляторе, но не на устройстве, мой XML-файл

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:id="@+id/rltvLayout"
    android:layout_height="fill_parent">

    <LinearLayout android:id="@+id/linearLayout1"
        android:layout_height="wrap_content" android:layout_width="wrap_content"
        android:orientation="vertical">
        <WebView android:id="@+id/webView" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:fitsSystemWindows="true"/>

        </LinearLayout>
        <LinearLayout android:layout_width="fill_parent"
 android:id="@+id/ad_layout"
 android:layout_height="wrap_content"
 android:gravity="bottom"
 android:layout_alignParentBottom="true"
 android:layout_alignBottom="@+id/home_layout">
 </LinearLayout>
            </RelativeLayout>

Ответы [ 2 ]

2 голосов
/ 20 июля 2011

Я использую это в XML-файле

<?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"
    android:layout_width="fill_parent" android:id="@+id/rltvLayout1"
    android:layout_height="fill_parent">
    <LinearLayout android:id="@+id/linearLayoutwebview"
        android:layout_height="wrap_content" android:layout_width="wrap_content"
        android:orientation="vertical">
        <WebView android:id="@+id/webView1"
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:fitsSystemWindows="true" />
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent"
        android:id="@+id/ad_layout" android:layout_height="wrap_content"
        android:gravity="bottom" android:layout_alignParentBottom="true"
        android:layout_alignBottom="@+id/home_layout">
        <com.google.ads.AdView android:layout_width="wrap_content"
            android:layout_height="wrap_content" ads:adUnitId="here put ID"
            ads:adSize="BANNER" android:id="@+id/adView" ads:refreshInterval="60" />

    </LinearLayout>
</RelativeLayout>

Еще один момент, который я обнаружил, заключается в том, что
Есть некоторые изменения в том, как Admob работает в версии 4.1.0
1) Удалитьattrs.xml (или, если вам это нужно для собственных пользовательских атрибутов, удалите части, связанные с AdViews).

2) Измените пространство имен в макете с xmlns: ads = "http://schemas.android.com/apk/res/com.your.packagename" на xmlns: ads =" http://schemas.android.com/apk/lib/com.google.ads" подробнее ...

1 голос
/ 20 июля 2011

Измените код, как показано ниже, добавьте этот код

    android:layout_above="@+id/ad_layout"
    android:layout_alignParentTop="true"

Ваш xml должен быть таким:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:id="@+id/rltvLayout"
android:layout_height="fill_parent">

<LinearLayout android:id="@+id/linearLayout1"
    android:layout_height="wrap_content" android:layout_width="wrap_content"
    android:orientation="vertical" android:layout_above="@+id/ad_layout"
    android:layout_alignParentTop="true">
    <WebView android:id="@+id/webViewMakeMp3" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:fitsSystemWindows="true"/>

    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent"
      android:id="@+id/ad_layout"
      android:layout_height="wrap_content"
      android:gravity="bottom"
      android:layout_alignParentBottom="true"
      android:layout_alignBottom="@+id/home_layout">
    </LinearLayout>
   </RelativeLayout>
...