0

可能重复:
无法在未调用 Looper.prepare() 的线程内创建处理程序

我想在线程中调用 alertdialogbox 如下

    public class connect implements Runnable
     {
     public void run()  //run method

    {

        AlertDialog.Builder alert = new AlertDialog.Builder(cordovaExample.activity);

        alert.setTitle("Confirm");
        alert.setMessage("Are you sure?");

        alert.setPositiveButton("YES", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int which) {
                // Do nothing but close the dialog

                dialog.dismiss();
            }

        });

        alert.setNegativeButton("NO", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int which) {
                // Do nothing
                dialog.dismiss();
            }
        });

        AlertDialog s = alert.create();
        alert.show();
       }
     }

我从以下活动中调用此线程

public class cordovaExample extends DroidGap
{
    Context mcontext;

    public static cordovaExample activity;
private static MediaPlayer  music=null;
    @Override
    public void onCreate(Bundle savedInstanceState)

        {
            super.onCreate(savedInstanceState);

            activity=this;

                             super.init();



                   new Thread(new connect(this)).start();

                     }
                }

但它给出的错误不能在没有调用 Looper.prepare() 的线程内创建处理程序

任何帮助将不胜感激

4

2 回答 2

2

在 App UI 线程中写下这一行

 alert.show();

像这样的东西

MainActivity.this.runOnUiThread(new Runnable() {

        public void run() {
              alert.show();

        }
    });
于 2012-12-10T11:50:27.503 回答
1

你不能在线程运行时在 ui 中进行更改。如果你想这样做,请使用 Handler 或 runOnUiThead 或最好的选择是使用 AsyncTask。

于 2012-12-10T12:01:08.727 回答