Example #1
0
 protected void showLoadingPage() {
   if (mLoadDialogView == null) {
     GDLoadingDialogView.Builder builder =
         new GDLoadingDialogView.Builder(this, R.layout.no_network_error_view);
     mLoadDialogView = builder.create();
     mLoadDialogView.ShowDialog();
   } else {
     if (!mLoadDialogView.isShowing()) mLoadDialogView.ShowDialog();
   }
   mLoadDialogView.showLoadingInfo();
   mLoadDialogView.setCancelable(true);
 }