我想在我的安卓应用中放一个小横幅广告。我尝试使用 ad-mob,但我没有得到它。我需要付费才能在我的应用程序中添加内容吗?任何机构都可以建议我如何放置它。首先我想做它测试它然后发布。我尝试使用 developers.google.com 的指南,但没有得到
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Create the adView
adView = new AdView(this, AdSize.BANNER, MY_AD_UNIT_ID);
// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
LinearLayout layout = (LinearLayout)findViewById(R.id.mainLayout);
// Add the adView to it
layout.addView(adView);
// Initiate a generic request to load it with an ad
adView.loadAd(new AdRequest());
}