I am having some CPU usage when my app is backgrounded and the only message I am receiving at Logcat is coming from Adview with the typical:
\"Ad is n
I think you only need adView.pause();
in onPause()
method:
@Override
protected void onPause() {
adView.pause();
super.onPause();
}
and adView.resume();
in onResume()
method:
@Override
protected void onResume() {
super.onResume();
adView.resume();
}
Update: I think is an issue reported to google: https://groups.google.com/forum/#!topic/google-admob-ads-sdk/jz-ZQh86lm0