Problems with Mopub banners on some old devices

hello,

I have a slight problem with Mopub banners on a few older tablets - esp Samsung. Basically, the banner is being cropped on the vertical height. My code actually came direct from someone within Mopub and works on everywhere else, so I’m thinking it’s not all that broken.

This is what I do -

moPubView = new MoPubView(this);
RelativeLayout relativeLayout = new RelativeLayout(_appActiviy);
mFrameLayout.addView(relativeLayout);
RelativeLayout.LayoutParams adViewParams = new RelativeLayout.LayoutParams(	MoPubView.LayoutParams.WRAP_CONTENT, MoPubView.LayoutParams.WRAP_CONTENT);
adViewParams.addRule(RelativeLayout.ALIGN_PARENT_TOP,RelativeLayout.TRUE);
adViewParams.addRule(RelativeLayout.CENTER_HORIZONTAL,RelativeLayout.TRUE);
relativeLayout.addView(moPubView, adViewParams);

Any thoughts?

tony