简体   繁体   中英

how can really show ProgressDialog while waiting for end process

I want to show ProgressDialog but ProgressDialog never really rendered ! And I want to end this process to start next state. this is my code:

ProgressDialog waitProgressDialog = new ProgressDialog(getContext());
            waitProgressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
            waitProgressDialog.setMessage("please wait..");
            waitProgressDialog.setOnShowListener(new OnShowListener() {

                @Override
                public void onShow(DialogInterface dialog) {
                    ExirDebugger.println("----------TEST999999 START");
///same sqlit datasouce select
                    ExirDebugger.println("----------TEST999999 END");
                }
            });
            waitProgressDialog.show();

android not render anything while all work end! can anyone help me?

I use

ProgressDialog dialog = ProgressDialog.show(className.this, "", "Loading. Please wait...", true);

 //Do stuff

dialog.dismiss();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM