Android应用中Admob广告的问题

时间:2014-02-08 14:40:00

标签: java android xml admob

我在使用xml嵌入广告时遇到问题。我试着用xml做这个 它告诉我错误: com.google.ads.AdView 上解析XML:unbound pref 时出错:

执行此操作后未显示,但我在logCat上看到了收到的广告。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">



<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="@drawable/card_shadow_base"
    android:layout_marginTop="@dimen/default_vertical_margin"
    android:layout_marginLeft="@dimen/default_horizontal_margin"
    android:layout_marginRight="@dimen/default_horizontal_margin"
    android:paddingBottom="2dp"
    android:id="@+id/tuto_title_card">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:src="@drawable/ic_launcher"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="false"
        android:layout_alignParentTop="true" />

    <TextSwitcher
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tuto_text_switcher"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@+id/imageView">

    </TextSwitcher>


</RelativeLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/tuto_title_card"
    android:layout_above="@+id/closeButton" />
<LinearLayout        
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:layout_above="@id/closeButton"
    android:layout_below="@+id/pager">

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
     ads:adUnitId="xxxxxxxxxxxxx" />
</LinearLayout>

<Button
    android:id="@+id/closeButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:background="@drawable/button_close"
    android:paddingBottom="12dp"
    android:paddingTop="12dp"
    android:text="@string/tuto_button_close"
    android:textColor="@color/white"
    android:textSize="@dimen/home_text_size" />

在我的java文件中:

    AdView adView = (AdView)findViewById(R.id.adView);
    AdRequest aRequest = new AdRequest();
    aRequest.setTesting(true);
            aRequest.addTestDevice("C0150396075730E422F8D1C212A5B658");
    adView.loadAd(aRequest); 

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

您需要在第一个RelativeLayout

中添加名称空间xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

更改第一个RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">

使用:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">