ProgressDialog MyDialog = ProgressDialog.show( MyActivity.this, " " , " Loading. Please wait ... ", true); 效果二实现代码:ProgressDialog pbarDialog;
pbarDialog = new ProgressDialog( mContext );
pbarDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pbarDialog.setMessage("Loading...");
pbarDialog.setCancelable(false);