I've implemented Banner Ads in my Android game and I'm wondering what is the 'correct' way to hide these ads? I'm hiding ads during actual game-play and at the moment, I have a couple of simple methods that handle this for me:
public void hideAd(){
adView.setVisibility(View.GONE);
}
public void showAd(){
adView.setVisibility(View.VISIBLE);
}
Is this the 'correct' way. I'm currently not pausing and resuming the adView like so:
public void hideAd(){
adView.setVisibility(View.GONE);
adView.pause;
}
public void showAd(){
adView.setVisibility(View.VISIBLE);
adView.resume();
}
What are the implications (if any) of not using the pause() and resume() methods? Or, indeed the implications (if any) of using these the pause() and resume() methods? Which is the correct/best way?