これは、広告を追加したアクティビティです。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/* Intent intent = new Intent(this, SelectArticle.class);
startActivity(intent);*/
// Create the adView
adView = new AdView(this, AdSize.BANNER, "a15172dfcf0c366");
// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
TableLayoutlayout = (TableLayout)findViewById(R.layout.activity_main);
// Add the adView to it
layout.addView(adView);
// Initiate a generic request to load it with an ad
adView.loadAd(new AdRequest());
setContentView(R.layout.activity_main);
}
マニフェストの最後に:
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>
</manifest>
jar ファイル googleAdmob も追加します。
アプリを開くとクラッシュします。何を追加すればよいですか?