今日私のアプリケーションにいくつかの更新がありましたが、今はadmobがうまく動作せず、adview missing xml attribute "adsize"
という広告にエラーが表示されます。今変更は私が広告とは何の関係もない作り、私はそれらを実装し、これが私のxml変わったadmobの問題
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res/com.notify.me.lite"
android:layout_width="fill_parent"
android:id="@+id/mainLayout1"
android:layout_height="fill_parent" android:orientation="vertical">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adUnitId="id"
ads:adSize="BANNER"/>
<WebView android:layout_width="fill_parent" android:id="@+id/webView1" android:layout_height="fill_parent"></WebView>
</LinearLayout>
、どこで
を働いていたので、彼らは同じとなっているその実装
public class Main extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_webview);
WebView browser = (WebView) findViewById(R.id.webView1);
browser.loadUrl("file:///android_asset/about.html");
AdView adView = (AdView)this.findViewById(R.id.adView);
AdRequest request = new AdRequest();
request.setTesting(true);
adView.loadAd(request);
}
あなたが見ることができるように、adsizeはxmlファイルにあるので、なぜ私はそのエラーを受けているべきなのでしょうか。なぜこれが突然起きているのかというアイデアは?
私はあなたの方法に切り替えましたが、私はまだ私がなぜもう仕事をしないのか困惑していますが、もう一度覚えています – tyczj