我正在尝试使用此代码显示进度对话框
pd = ProgressDialog.show(v.getRootView().getContext(), "", "Please Wait....",true,true);
MyThread mt = new MyThread(SAVE1);
mt.setPriority(Thread.MIN_PRIORITY);
mt.start();
但是我只能看到进度对话框没有进度效果(比如Rounding some Image) 任何人都可以帮助我吗?
答案 0 :(得分:0)
pd = ProgressDialog.show(yourRunningActivity.this, "loading", "Please Wait....");
MyThread mt = new MyThread(SAVE1);
mt.setPriority(Thread.MIN_PRIORITY);
mt.start();