Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 16th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 30  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. admob: How to load AdRequest outside of UI Thread?
  2. super.onCreate(savedInstanceState){
  3.  
  4.     mainLayout = new LinearLayout(this);
  5.     mainLayout.setOrientation(LinearLayout.VERTICAL);
  6.     adView = new AdView(this, AdSize.BANNER, "MY_ID");
  7.     adView.setVisibility(AdView.VISIBLE);
  8.     mainLayout.addView(adView);
  9.     adView.loadAd(new AdRequest());
  10.      //more codes below
  11.     }