I got a problem with setting aligning my view programatically to the bottom of the screen. Basically I just want to place my admob advert at the screen bottom. I can\'t do i
Add the advert to the RelativeLayout with LayoutParams as follows:
RelativeLayout.LayoutParams rparams = (LayoutParams) rl .getLayoutParams(); rparams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM); ((ViewGroup) rl).addView(adView, rparams);
instead of just
rl.addView(adView);
Good luck! :)