您好我正在尝试将admob添加到我的应用中,但每次按保存时我都会遇到同样的错误
我使用4.3 sdk而xml api是18
在包'com.packagename.appname中找不到属性'adSize'的资源标识符 找不到包'com.packagename.appname
中属性'adUnitId'的资源标识符我已将此添加到Manifest
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
还有这个
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
这是我的java代码,当我悬停在它上面时,我得到了这个评估项目设置修复程序来解析对它的引用 缺少元素'AdRequest.Builder'
mAdView = (AdView) findViewById(R.id.adView1);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
当我悬停在照片上时,照片中显示的xml文件中的错误也没有找到包中的资源和我的包名
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111" >
</com.google.android.gms.ads.AdView>