这是我第一次使用受众群体网络,我不清楚。我可以成功显示横幅广告,但不确定是否需要每X次刷新一次,还是可以自行刷新。
感谢您的帮助。
private AdView adView;
@Override
public void onCreate(Bundle savedInstanceState) {
...
// Instantiate an AdView object.
adView = new AdView(this, "#YOUR_PLACEMENT_ID", AdSize.BANNER_HEIGHT_50);
// Find the Ad Container
LinearLayout adContainer = (LinearLayout) findViewById(R.id.banner_container);
// Add the ad view to your activity layout
adContainer.addView(adView);
// Request an ad
adView.loadAd();
}`
protected void onDestroy()
{
if (adView != null) {
adView.destroy();
}
super.onDestroy();
}