我正在尝试将MoPub集成到我的应用程序中,但是不确定在我的活动的onCreate()方法中确切放置代码段的确切位置:

mAdView = (MoPubView) findViewById(R.id.adview);
mAdView.setAdUnitId("xxxxxxxxxxx"); // Enter your Ad Unit ID from www.mopub.com
mAdView.loadAd();


我要在呼叫super.onCreate(savedInstanceState);之前还是之后放置它?

是的,我知道这是一个非常琐碎的问题。

最佳答案

setContentView之后编写代码,因为您将findViewById用于mAdView。

10-08 06:45