-1
好了,這裏就是我試圖做.....活動被破壞或暫停時如何恢復?
new AsyncTask<Void, Integer, Void>(){
@Override
protected Void doInBackground(Void... arg0) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Void result) {
text1.setText("Nice to meet you "+name);
dismissDialog(typeBar);
}
@Override
protected void onPreExecute() {
typeBar = 0;
showDialog(typeBar);
}
}.execute((Void)null);
}
});
}
的問題是在我的應用程序TextView的變化ALOT!每次單擊按鈕時......我不想在每次textView更改時糾正AsyncTask。這將是乏味和使用大量資源。有沒有人能更好的實現這個目標?