Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public class DefaultActivity extends DroidGap
  2. {
  3.  
  4. private static final String AdMob_Ad_Unit = "xxxxxxxxxxxxxxxxxxxxxxxxx";
  5. private AdView adView;
  6.  
  7.  
  8. public void onCreate(Bundle savedInstanceState)
  9. {
  10.  
  11. super.onCreate(savedInstanceState);
  12. super.setIntegerProperty( "splashscreen", R.drawable.splash );
  13. super.loadUrl("file:///android_asset/www/index.html", 1000);
  14.  
  15. adView = new AdView(this, AdSize.BANNER, AdMob_Ad_Unit);
  16. LinearLayout layout = super.root;
  17. layout.addView(adView);
  18. AdRequest request = new AdRequest();
  19. adView.loadAd(request);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement