In XML, I define a RelativeLayout with id banner_admob, then I run the banner from Java code.
RelativeLayout root = (RelativeLayout) findViewById(R.id.banner_admob); AdView banner = new AdView(mActivity, AdSize.BANNER, "banner"); banner.loadAd(new AdRequest()); root.addView(banner);
source share