如何等待线程直到另一个线程完成

时间:2012-11-23 08:52:26

标签: android multithreading gridview

我想在网格视图中加载图像时显示进度对话框 我面临的问题是当前线程和Progress Dialog线程同时运行。

 public String Method1(){
        String output="";
        final ProgressDialog aProgDialogL = ProgressDialog.show(this, "", "Loading...");
        Thread thread = new Thread() {
            public void run () {
                //My codes
                aHandlerL.post(new Runnable() {
                    @Override
                    public void run() {
                        //Post Runnable codes
                        aProgDialogL.dismiss();
                    }
                });
            }
        };
        thread.start();

        /*
         * 
         * 
         * OTHER CODES
         * 
         * 
         */
        return output;
 }  

在上面的例子中,我需要在Progress Dialog Thread中运行代码。完成执行后,我需要运行我的“其他代码”。怎么做?

我尝试使用Async任务。在异步任务完成之前,method1被取消并重新生成字符串。

    public String Method1(){
    String result="";
    new GetImages().execute();
    return result;

}
public class GetData extends AsyncTask<Void, Void, Integer>{

    @Override
    protected void onPreExecute() {
        aProgDialogL = ProgressDialog.show(Main.this, "", "Loading...");
    }

    @Override
    protected Integer doInBackground(Void... params) {
        //Progress Dialig Code
        return null;
    }

    @Override
    protected void onPostExecute(Integer result) {
        aProgDialogL.dismiss();
        //OTHER CODES
        super.onPostExecute(result);
    }

}

4 个答案:

答案 0 :(得分:1)

您可以使用Async任务。 http://developer.android.com/reference/android/os/AsyncTask.html。这里有一个很好的教程。 http://www.vogella.com/articles/AndroidPerformance/article.html.Also查看此链接 http://developer.android.com/guide/components/processes-and-threads.html。使用asynctask根据您的需要对其进行修改。

     doInBackground()- For long running operations. Don't update ui here.
     onPreExecute()- update ui before running the operatio nin background.
     onPostExecute()- update ui after running the operation.

答案 1 :(得分:1)

我建议你采取一些不同的方法。

不要涉及Method1()函数中的任何线程。你的Method1()函数应该在单独的线程下运行。

以下代码段将为您提供帮助。

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ((Button) findViewById(R.id.btnPopup))
            .setOnClickListener(new OnClickListener() {


            public void onClick(View v) {

                new Thread() {
                    public void run() {

                        String answer = Method1();

                        runOnUiThread(new Runnable() {

                            @Override
                            public void run() {
                                // Here you will write the code which is
                                // to be executed on main thread.

                            }
                        });
                    };
                }.start();
            }
        });

    }

    public String Method1() {
        // Write code

        return "result";
    }
}

答案 2 :(得分:0)

我建议使用AsyncTask解决您的问题

http://p-xr.com/merging-2-tutorials-xml-data-progressdialog-using-asynctask/

http://p-xr.com/android-tutorial-how-to-make-a-progress-dialog/

http://developer.android.com/reference/android/os/AsyncTask.html

答案 3 :(得分:0)

而不是:如何使用Timer在特定时间之后停止你的线程并在停止语句之后编写你想要的代码那样:

Timer timer=new Timer();
 timer.schedule(new TimerTask() {
 @Override
public void run() {
     thread.stop;
       // Other code   }

},你想要的时间);