0
どこのフォルダを作成するのか、またはMoPubViewオブジェクトをXMLでどこに見つけるか私はこのコードを入れてみました:XMLでMoPubViewオブジェクトを作成する
<com.mopub.mobileads.MoPubView
android:id="@+id/adview"
android:layout_width="fill_parent"
android:layout_height="50dp"
/>
と私の活動は、このコードを配置することです:
// Declare an instance variable for your MoPubView.
private MoPubView moPubView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.console);
moPubView = (MoPubView) findViewById(R.id.adview);
moPubView.setAdUnitId("9122a91cfac3482cb46607622b93d84d");
moPubView.loadAd();
moPubView.setBannerAdListener(this);
}
protected void onDestroy() {
moPubView.destroy();
super.onDestroy();
}
あなたが最初のブロックを置くありがとう、そして私の下手な英語のため申し訳ありません