我要去找我的GPS信號,而它在尋找它,我有一個ProgressDialog,但是,它表明,當任務完成後:progressDialog並等待一個信號
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
DialogInterface.OnCancelListener dialogCancel = new DialogInterface.OnCancelListener() {
public void onCancel(DialogInterface dialog) {
Toast.makeText(getBaseContext(),
"no encotnrada",
Toast.LENGTH_LONG).show();
// handler.sendEmptyMessage(0);
}
};
pd = ProgressDialog.show(this, "buscando", "gps", true, true, dialogCancel);
while(currentLocation == null){
}
Thread thread = new Thread(this);
thread.start();
}
中的run()我看看爲我的currentLocation值。
如何等待此信號才能顯示對話框?
先謝謝你
你是對的!非常感謝! 它的工作! – user1256477 2012-03-09 11:17:54
您必須接受答案 – 2012-03-10 23:52:01
我該怎麼做? 你是我想接受的人,但我不知道 – user1256477 2012-03-12 07:54:10