当某些功能在后台运行时,我想显示一个圆形进度对话框。所以我写了这么一系列代码:
pd = ProgressDialog.show(GridLayoutActivity.this, "","...");
new Thread(new Runnable() {
public void run() {
someFunc();
handler.sendEmptyMessage(0);// 执行耗时的方法之后发送消给handler
}
}).start();
但是progressDialog 不滚动?为什么?