Ejemplo n.º 1
0
 @Override
 protected void onPause() {
   if (mBMapMan != null) {
     mBMapMan.stop();
   }
   super.onPause();
 }
Ejemplo n.º 2
0
 @Override
 protected void onPause() {
   // TODO Auto-generated method stub
   super.onPause();
   if (bMapManager != null) {
     bMapManager.start();
   }
 }
Ejemplo n.º 3
0
 public void onPause() {
   mApplication.onPauseMapActivity();
   mMxLocationOverlay.disableMyLocation();
   mMxLocationOverlay.disableCompass(); // 关闭指南针
   // if (mMovingOverlay != null) {
   // mMovingOverlay.onPause();
   // }
   super.onPause();
   MobclickAgent.onPause(this);
   mActionBar.setProgressBarVisibility(View.GONE);
 }
Ejemplo n.º 4
0
 @Override
 protected void onPause() {
   mapManager.stop();
   super.onPause();
 }
Ejemplo n.º 5
0
 @Override
 protected void onPause() {
   BMapApiDemoApp app = (BMapApiDemoApp) this.getApplication();
   app.mBMapMan.stop();
   super.onPause();
 }