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
ImageButton buttonAdvance = new ImageButton(this); RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(160, 160); params.leftMargin = 5; params.bottomMargin = 4; params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM); buttonAdvance.setLayoutParams(params);