android webview admob不显示

时间:2011-07-20 06:30:02

标签: android webview admob

我想在我的页面底部使用谷歌添加..进入模拟器它正确显示添加但在设备中它没有
它给了我..

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 个答案:

答案 0 :(得分:2)

我在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(或者如果您需要自己的自定义属性,请删除与AdView相关的部分)。

2)将布局中的命名空间从xmlns:ads =“http://schemas.android.com/apk/res/com.your.packagename”更改为xmlns:ads =“http://schemas.android .COM / APK / lib目录/ com.google.ads”  see more...

答案 1 :(得分:1)

编辑如下代码,添加这些代码

    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>