我知道之前可能会问过这个问题,但我无法使用这些答案解决我的问题。
我的问题是当我使用eclipse将AdView添加到我的布局时,我收到消息:缺少必需的XML属性“adSize”。
这是我目前的活动XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
xmlns:ads= "http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0.9"
android:background="@drawable/background">
</android.support.v4.view.ViewPager>
<com.google.android.gms.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_weight="0.1"
ads:adSize="BANNER"
ads:adUnitId="mycodehidden">
</com.google.android.gms.ads.AdView>
此外,我运行时没有显示广告。
答案 0 :(得分:0)
你将旧的和新的admob apis结合起来是错误的。
通过google play服务库使用admob,更改ad xml名称空间:
来自:
xmlns:ads= "http://schemas.android.com/apk/lib/com.google.ads"
来:
xmlns:ads="http://schemas.android.com/apk/res-auto
然后在清单的应用标记中
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
不要忘记权限:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>