Skip to content

Instantly share code, notes, and snippets.

@keijiro
Created December 19, 2011 23:22
Show Gist options
  • Save keijiro/1499391 to your computer and use it in GitHub Desktop.
Save keijiro/1499391 to your computer and use it in GitHub Desktop.
AdMob installation
void installAdBannerInternal() {
// レイアウトをでっち上げる。
RelativeLayout layout = new RelativeLayout(this);
addContentView(layout, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
layout.setGravity(Gravity.BOTTOM);
// バナー広告を配置。
adBanner = new AdView(this, AdSize.BANNER, adPublisher);
layout.addView(adBanner);
// 広告をリクエストする。
adBanner.loadAd(new AdRequest());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment