所以我正在尝试将广告添加到我的程序中,你可以看到这是xml
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_alignParentBottom="true"
android:layout_marginBottom="27dp"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
app:adSize="BANNER" >
</com.google.ads.AdView>
我收到错误
Error parsing XML: unbound prefix
我搜索了stackoverflow和google上的解决方案,他们总是告诉我把
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
但是我已经拥有它所以我不确定为什么我会收到此错误
答案 0 :(得分: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/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
</LinearLayout>
您可以浏览官方广告教程here。