android - Remove Ads or Hide AdView -


i'm trying hide ads admob after 2 minutes, i've done is, after 2 minutes, i'll stop requesting fresh ad , hide adview, have written

if (adview.getvisibility() == adview.visible)      adview.setvisibility(adview.gone); 

what's happening ad becomes invisible still occupies space, not releasing it. , want release space.

any ideas, in advance.

if (adview.getvisibility() == adview.visible)      adview.setvisibility(view.gone); 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -