ProgressDialog created from onCreateDialog stops animating on second run

时间秒杀一切 提交于 2019-11-30 14:13:47
tonys

Ha! Got it... was also struggling with this. But calling:

removeDialog(DIALOG_PROGRESS_ID)

immediately after

dismissDialog(...)

removes it from the (presumed) dialog cache for the Activity and forces a call to onCreateDialog. Create a new ProgressDialog in onCreateDialog and the spinner animates everytime (for me at least).

I don't like to removeDialog to recreate it on next showing. So, I resolve this issue by using onCreateDialog and onPrepareDialog:

1) In onCreateDialog I normally create the ProgressDialog. 2) In onPrepareDialog I reference the progressBar inside it and force to restart:

@Override
protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
    switch (id){

        .....

        case DIALOG_PROGRESS_ID:
            ProgressBar p = (ProgressBar) dialog.findViewById(android.R.id.progress);
            p.setVisibility(View.GONE);
            p.setVisibility(View.VISIBLE);
        break;
    }
}

Well, a not-so-cool workaround would to edit the parameters and not declaring the int private as in the examples. Of course, you lose the ability to switch on onCreateDialog, but you don't seem to be doing that anyway:

showDialog(++DIALOG_PROGRESS_ID);

Of course if the dialog is shown numerous times, you could have memory errors. Not pretty, but should work.

You can also try.

if (progressDialog != null) {
    progressDialog.dismiss();
    progressDialog = null;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!