我正在使用Android AsyncTask,我希望在加載程序期間創建一個進度條。這是我如何做到的。如何保存在AsyncTask中生成的數據?
A class is declared here...
private ArrayList<String> result1 = new ArrayList<String>(); //class variable
onCreate()
{
Some stuff here...
new ATask().execute();
for (int i = 0; i <result1.size();i++)
{
output = output +result1.get(i) + "\n\n";
}
textView.setText(output);
}
private void do0()
{
ArrayList<Sentence> result = new ArrayList<Sentence>();
ArrayList<String> result2 = new ArrayList<String>();
result = do1("link", true); //just some function I am working
result1 = do2(result,10);//do2 return ArrayList<String>
}
private class ATask extends AsyncTask<String, Void, String>{
private ProgressDialog progress = null;
@Override
protected String doInBackground(String... params) {
do0();
return null;
}
@Override
protected void onCancelled() {
super.onCancelled();
}
@Override
protected void onPostExecute(String result) {
progress.dismiss();
//adapter.notifyDataSetChanged();
super.onPostExecute(result);
}
@Override
protected void onPreExecute() {
progress = new ProgressDialog(ReadWebPage.this);
progress.setMessage("Doing...");
progress.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progress.show();
super.onPreExecute();
}
@Override
protected void onProgressUpdate(Void... values) {
super.onProgressUpdate(values);
}
};
我的本意是,雖然進度條加載,這將完成do0()
和修改result1
,然後我oncreate
可以使用result1
,以顯示它的TextView
。但是,我的TextView
在此設置中始終爲空。所以我移動
for (int i = 0; i <result1.size();i++)
{
output = output +result1.get(i) + "\n\n";
}
textView.setText(output);
到do0()
(在result1 = do2()
後右),但隨後的程序會崩潰。我不熟悉這些線程設置,感謝您的幫助。
謝謝,這似乎是一個更好的代碼使用,但我從示例代碼中得到一個。我現在對這個權利不是很熟悉,但是我認爲當我有更成熟的編碼能力時,你的方法應該是應該的。感謝您的推薦。 – JLTChiu 2012-04-22 03:50:34