简体   繁体   中英

Can not create handler inside thread that has not called Looper.prepare()

I tried to show an alert dialog after some delay:

Thread thread = new Thread() {
                    @Override
                    public void run() {
                        try {
                            synchronized (this) {
                                wait(3000);
                            }
                        } catch (InterruptedException ex) {
                        }

                        final AlertDialog.Builder builder = new AlertDialog.Builder(stop_watch.fa);
                        builder.setMessage("Want to exit?");
                        builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                locator_activity.fa.finish();
                            }
                        });
                        AlertDialog alertDialog = builder.create();
                        alertDialog.show();
                    }
                };
                thread.start();

After launching app. When it's time to show alertdialog the app stopped working. And it shows problem:-

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

AlertDialogs are UI elements and so the work needs to be executed on the UI Thread:

new Thread() {
    public void run() {
        activity.this.runOnUiThread(new Runnable() {
            public void run() {
                // Show dialog..
            }
        });
    }
}.start();

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