@Override
 public void onWindowFocusChanged(boolean hasFocus) {
   super.onWindowFocusChanged(hasFocus);
   if (hasFocus && !isContentStarted) {
     adActivityContentWrapper.startContent();
     isContentStarted = true;
   }
 }