0

進行状況ダイアログが表示されている間に実行したい(データベースに行を追加する)次のコードがあります:

StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
httpclient = new DefaultHttpClient();
httppost = new HttpPost("http://192.168.1.38/hu/Addpost.php?username="+username+"&fname="+firstname+"&lname="+lastname+"&dop="+now+"&content="+post3+"&type="+post_type2+"");

                try
                {

                    nameValuePairs = new ArrayList<NameValuePair>();
                    nameValuePairs.add(new BasicNameValuePair("FirstN",firstname));
                    nameValuePairs.add(new BasicNameValuePair("LastN",lastname));
                    nameValuePairs.add(new BasicNameValuePair("Content",post1));
                    nameValuePairs.add(new BasicNameValuePair("type",post_type));
                    nameValuePairs.add(new BasicNameValuePair("Dateofp",now));
                    nameValuePairs.add(new BasicNameValuePair("username",username));
                    httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                    response = httpclient.execute(httppost);

                    if(response.getStatusLine().getStatusCode()==200)
                    {
                    entity=response.getEntity();
                    if(entity !=null)
                    {
                        Toast.makeText(getBaseContext(),"POST SUCCESFULLY ADDED",Toast.LENGTH_LONG).show(); 
                    }

                    }
                    else
                    {
                        Toast.makeText(getBaseContext(),"ERROR RERTY OR CHECK YOUR CONNECTION",Toast.LENGTH_LONG).show();
                    }





                    wholepost.setText("");





                }
                catch(Exception ex)
                {Toast.makeText(getBaseContext(),"CONNECTION ERROR",Toast.LENGTH_LONG).show();}

私は AsyncTask とスレッドを試しましたが、何も機能しませんでした.時々機能しましたが、投稿が追加された後に進行状況ダイアログが表示されました.

4

1 に答える 1

0

これを正しく行うには、Mounzer が言うように AyncTask を使用する必要があります。プログレスバーを実行するには、データのアップロードを行い、戻ってプログレスバーを更新し、さらにデータをロードする必要があります。

幸いなことに、AsyncTask を使用すると簡単に実行できます。この非常に単純な例は 1000 までカウントし、反復ごとに結果を TextView で公開します。これを簡単にプログレスバーに変更し、http ポスト コードを doInBVackground() に入れることができます。

protected class InitTask extends AsyncTask<Integer, String, Void> {


        // add the thread ID and count to the list
        @Override
        protected void  onProgressUpdate(String... values) {
            super.onProgressUpdate(values);
            TextView tv = new TextView(mContext);
            mThreadOutput.addView(tv);
            tv.setText(values[0]);

        }

        // do the thread work. at each iteration, set the progress to be
        // updated by the UI thread
        protected Void doInBackground(Integer... params ) {

            for (int i = 0; i < 1000; i++) {
                String s = "Thread " + params[0] + ": " + i; 
                publishProgress( s );
            }
            return null;


        }

}
于 2013-03-29T22:08:06.307 に答える