0

重複の可能性:
Looper.prepare() を呼び出していないスレッド内でハンドラーを作成できない

次のようにスレッドでアラートダイアログボックスを呼び出したい

    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 に答える