@Override
 protected void onResume() {
   super.onResume();
   EUtil.loge("App onResume");
   mVisable = true;
   if (null != mBrowser) {
     mBrowser.onAppResume();
   }
   if (null != mBrowserAround) {
     mBrowserAround.onResume();
   }
   isForground = true;
   reflectionPluginMethod("onActivityResume");
 }
 @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");
 }
 @Override
 protected void onDestroy() {
   EUtil.loge("App onDestroy");
   super.onDestroy();
   reflectionPluginMethod("onActivityDestroy");
 }
 @Override
 protected void onStop() {
   super.onStop();
   EUtil.loge("App onStop");
   reflectionPluginMethod("onActivityStop");
 }
 @Override
 protected void onRestart() {
   super.onRestart();
   EUtil.loge("App onRestart");
   reflectionPluginMethod("onActivityReStart");
 }