我正在尝试在我的应用程序中添加AdMob广告。

在清单中,我有:

<uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<meta-data android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />


<activity android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
            android:theme="@android:style/Theme.Translucent" />


在xml活动的布局中,我使用:

<com.google.android.gms.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adSize="BANNER"
        ads:adUnitId="@string/id">
    </com.google.android.gms.ads.AdView>


我的Java代码中的主要活动:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       mAdView = (AdView) findViewById(R.id.adView);
        adRequest = new AdRequest.Builder().build();
        mAdView.loadAd(adRequest);


不幸的是,这不起作用,并且我收到此错误


  错误:在包中找不到属性“ adSize”的资源标识符

最佳答案

遇到此问题的其他人已通过在自定义布局nampespace中将/res替换为/lib的解决方案。

xmlns:android="http://schemas.android.com/apk/res/android" will be

xmlns:yourApp="http://schemas.android.com/apk/lib/com.yourApppackage.yourClass"

07-28 04:10