有像這樣的問題,但因爲我已經使用的xmlns它不是重複必需的XML屬性「adSize時」失蹤(谷歌播放服務)
:廣告=「http://schemas.android.com/ APK/RES-AUTO」 和我主要在Java
我想使用谷歌的廣告
發揮服務我用下面的Java代碼進行代碼
com.google.android.gms.ads.AdView adView = (com.google.android.gms.ads.AdView) activity.findViewById(R.id.adview);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(activity.getString(R.string.admob_id));
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
和以下XML代碼
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
但我在旗幟收到錯誤就像
Requred XML屬性 'adSize時' 失蹤
嘗試添加AdView的中LinearLayout,首先採用線性佈局 – Rohit
你有錯過廣告:xml – Nepster