1

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

私のプログラムでは、進行状況ダイアログを表示したいので、スレッドを作成しましたが、Can't create handler inside thread that has not called Looper.prepare()以前に投稿された質問も見ることができますが、これを処理できます。これは私のコードです

        dialog=ProgressDialog.show(Login.this, "Connecting to the Server", "Please wait");

        Thread thred=new Thread(new Runnable() {

            public void run() {
                  try {


                      // Create a new HttpClient and Post Header
                        HttpClient httpclient = new DefaultHttpClient();           
                        HttpPost httppost = new HttpPost("http://www.diskonbanget.com/bni/login/login.php");
                        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
                        nameValuePairs.add(new BasicNameValuePair("username", username));
                        nameValuePairs.add(new BasicNameValuePair("password", password));
                        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

                        // Execute HTTP Post Request

                        HttpResponse response = httpclient.execute(httppost);

                        String str = inputStreamToString(response.getEntity().getContent()).toString();


                        if(str.toString().equalsIgnoreCase("false"))
                        {
                            dialog.dismiss();
                            AlertDialog alert = new AlertDialog.Builder(Login.this).create();                       
                            alert.setMessage("Please enter valid username & Password");
                            alert.setButton("OK",new DialogInterface.OnClickListener() {
                                        public void onClick(DialogInterface dialog,int which) {
                                        }
                                    });

                          alert.setIcon(R.drawable.loginlogo); 
                          alert.show();


                        }
                        else{   

                             Intent intent=new Intent(Login.this,MainMenu.class);
                             intent.putExtra("photo", str);
                             intent.putExtra("username", username);
                             txtusername.setText("");
                             txtPassword.setText("");
                             dialog.dismiss();
                             startActivity(intent);


                        }

                    } catch (Exception e) {
                        dialog.dismiss();
                        AlertDialog alert = new AlertDialog.Builder(Login.this).create();                       
                        alert.setMessage("Can not Connect to the server.please make sure your internet is Switch on");
                        alert.setButton("OK",new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog,int which) {
                                    }
                                });
                        alert.setIcon(R.drawable.loginlogo); 

                        alert.show();
                    } 


            }
        });
        thred.start();

誰かがこの問題を解決するのを手伝ってください。

4

1 に答える 1

0

バックグラウンド スレッドはDialog. AsyncTaskraw スレッドの代わりに を使用し、 でダイアログを表示するなど、メイン アプリケーション スレッドでそれを実行してくださいonPostExecute()

于 2012-10-10T23:12:47.353 に答える