private void showProcessDialog(
     int resId, boolean CanceledOnTouchOutside, boolean Indeterminate, boolean cancelable) {
   mprogressDialog =
       DialogUtils.createProgressDialog(
           mActivity, resId, CanceledOnTouchOutside, Indeterminate, cancelable);
   mprogressDialog.show();
 }