我有進度進度動作週期的Android
ProgressDialog.show(this, "VVV","DDD", false,true,new DialogInterface.OnCancelListener()
{
public void onCancel(DialogInterface dialog)
{
//msgDisplay("Action is cancelled");
}
});
這段代碼如何綁定此代碼,我做任何動作?
例如:
1. i press the button
2. this progressbar will work
3. i run my function for doing something
4. when my function ends the progressbar will ends
您可以輕鬆地用[Android-AsyncTask](http://developer.android.com/reference/android/os/AsyncTask.html)完成同樣的事情。正如你在步驟中所提到的。 – user370305 2012-04-10 07:31:53
我想現在這個問題是沒用的。你知道這個答案... – 2012-04-11 14:26:31