我对read子有问题。 我不敢肯定这里发生的情况。 我的理解是,在长期活动结束之前,进展方言已告终,但情况并非如此。 我希望这一长期活动能够开始、结束、解职,然后开始新的活动。
final ProgressDialog spinnerDialog = ProgressDialog.show(
MainScreen.this, "",
"Waiting for accurate (> 10 meters) GPS coordinates...Please wait. ", true);
new Thread(new Runnable() {
public void run() {
//Do something that takes a while
spinnerDialog.dismiss();
return;
}
}).start();
Intent tvi = new Intent();
tvi.setClass(getInstance(), TabbedView.class);
startActivity(tvi);