What is the best way to hide adMob ads and stop refreshing them? to keep ad impressions (so it won't affect negatively the ad revenue) also the network usage and overall performance. Android Adview docs don't say much, it's enough doing something like this?
case SHOW_ADS:
{
adView.setVisibility(View.VISIBLE);
break;
}
case HIDE_ADS:
{
adView.setVisibility(View.GONE);
break;
}
adView stop fetching ads when is not visible? or it's needed
case SHOW_ADS:
{
adView.setVisibility(View.VISIBLE);
adView.resume();
break;
}
case HIDE_ADS:
{
adView.setVisibility(View.GONE);
adView.pause();
break;
}