@Override
 protected void onPause() {
   isForground = false;
   super.onPause();
   EUtil.loge("App onPause");
   mVisable = false;
   if (mFinish) {
     return;
   }
   if (null != mBrowser) {
     mBrowser.onAppPause();
   }
   if (null != mBrowserAround) {
     mBrowserAround.onPause();
   }
   reflectionPluginMethod("onActivityPause");
 }