我想在我的屏幕上使用進度條而不是progressDialog。進度條與asyncTask
我已經在我的XML-view文件中插入了一個progressBar,並且我想在加載時顯示它,並在不加載時將其禁用。
所以我使用可見,但它發生,所以其餘的數據下降。
我應該如何在asynctask中使用進度條?我如何顯示和隱藏它?
我想在我的屏幕上使用進度條而不是progressDialog。進度條與asyncTask
我已經在我的XML-view文件中插入了一個progressBar,並且我想在加載時顯示它,並在不加載時將其禁用。
所以我使用可見,但它發生,所以其餘的數據下降。
我應該如何在asynctask中使用進度條?我如何顯示和隱藏它?
至於使用來自異步任務的進度條,您可以使用doInBackground(int Progress)
中的PostPrgressUpdate()
和OnProgressUpdate()
方法更新ProgressBar。 至於酒吧的顯示和隱藏我無法理解你的問題(或問題,請修改)
這裏是一個最詳盡的例子:
public class ScreenSplash extends Activity {
@Override
protected void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.screen_splash);
final ProgressBar progress = (ProgressBar)findViewById(R.id.progress);
final TextView textview = (TextView)findViewById(R.id.text);
new MyWorker(this, progress, textview).execute();
}
}
final class MyWorker extends AsyncTask<Void, Integer, Void> {
private static final int titles[] = {R.string.splash_load_timezone,
R.string.splash_load_memory,
R.string.splash_load_genres,
R.string.splash_load_channels,
R.string.splash_load_content};
private static final int progr[] = {30, 15, 20, 25, 20};
private int index;
private final Activity parent;
private final ProgressBar progress;
private final TextView textview;
public MyWorker(final Activity parent, final ProgressBar progress, final TextView textview) {
this.parent = parent;
this.progress = progress;
this.textview = textview;
}
@Override
protected void onPreExecute() {
int max = 0;
for (final int p : progr) {
max += p;
}
progress.setMax(max);
index = 0;
}
@SuppressWarnings("unchecked")
@Override
protected Void doInBackground(final Void... params) {
/* Load timezone. this is very slow - may take up to 3 seconds. */
...
publishProgress();
/* Get more free memory. */
...
publishProgress();
/* Load channels map. */
...
publishProgress();
/* Load genre names. */
...
publishProgress();
/* Preload the 1st screen's content. */
...
publishProgress();
return null;
}
@Override
protected void onProgressUpdate(final Integer... values) {
textview.setText(titles[index]);
progress.incrementProgressBy(progr[index]);
++index;
}
@Override
protected void onPostExecute(final Void result) {
parent.finish();
}
}
對於shownig /隱藏你的進度條使用progress.setVisibility(View.VISIBLE)
和progress.setVisibility(View.GONE)
。常量也有View.INVISIBLE
;它與GONE
的區別在於你的進度條並未繪製,但仍佔用其空間(對某些佈局有用)。
與這個領域的很多例子一樣,它沒有考慮在任務正在運行時活動被破壞(可能重新創建)的可能性... – 2010-11-07 22:41:31
是, 確實如此。有關於這個問題的好帖子:http://stackoverflow.com/questions/3357477/is-asynctask-really-massively-flawed-or-am-i-just-missing-something – JBM 2010-11-08 08:57:46
事實上,一個必須殺死他們在onDestroy中的bg任務。活動指南指出,在活動被破壞後,應該沒有任何東西在後臺運行(否則你會排出手機的電池)。因此,你應該強制完成你的AsyncTasks,即使它只是用戶翻轉手機,並開始全部在onCreate - 愚蠢的,是的,但是,如果谷歌已經把這個Activity的生命週期放在這裏,我們該怎麼辦? – JBM 2010-11-08 09:15:24
<ProgressBar
android:id="@+id/progress_bar"
style="@android:style/Widget.ProgressBar.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
然後在Asyntask
ProgressBar mProgress=(ProgressBar) findViewById(R.id.progress_bar);
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
mProgress.setVisibility(View.GONE);
}
[從更新的AsyncTask進度對話框在活動]的可能重複(http://stackoverflow.com/questions/4591878/updating- progress-dialog-in-activity-from-asynctask) – 2013-01-23 13:14:39