ProgressDialog不显示

在程序中有如下代码:

proDialog.setMessage(mContext.getResources().getString(R.string.installing));
				proDialog.show();
				installBatch2();//在程序运行期间显示进度条,使界面更友好一点
				proDialog.cancel();

这一段代码是在一个按钮的响应函数里面,结果发现这样做死活显示不出来,但是去掉installBatch2这个函数之后又可以显示。所以只好加一个线程,将installBatch2这个函数放入线程里面,才最终解决问题。

如下:

proDialog.setMessage(mContext.getResources().getString(R.string.installing));
				proDialog.show();
//				installBatch2();
//				如果不使用下面的方式,这个progressdialog就不能够显示出来。原因未知
				new Thread(new Runnable(){
					public void run() {
							installBatch2();
							proDialog.cancel();
					}					
				}).start();

找了很长时间不知道是什么原因,所以记录一下,防止下次出错。








你可能感兴趣的:(ProgressDialog不显示)