Android:在Thread完成后使用setContentView()

时间:2014-03-26 09:41:37

标签: java android multithreading oncreate setcontentview

我希望在线程完成任务后使用setContentView()方法。 但是我怎么能意识到这一点,因为它不可能在线程中使用这个方法? 在线程运行时在onCreate()方法中使用此方法时,我也没有得到正确的结果,因为不显示第一个“setContentView(R.layout.load_screen)”的布局。

我的onCreate()方法:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Open loading screen
    setContentView(R.layout.load_screen);
    this.loadingScreen();  // In this method the new Thread will start.
}

我的loadingScreen()方法:(线程完成后我想再次使用setContentView())

 public void loadingScreen(){
    // prepare for a progress bar dialog
    progressBar = new ProgressBar(this);
    progressBar = (ProgressBar)findViewById(R.id.progressBar1);

    //reset progress bar status
    progressBarStatus = 0;

    new Thread(new Runnable() {
          public void run() {
        while (progressBarStatus < 100) {
            try {
                Thread.sleep(100);
            } catch (InterruptedException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }   
          // process some tasks
          progressBarStatus = doSomeTasks();

          // your computer is too fast, sleep 1 second
          try {
            Thread.sleep(100);
          } catch (InterruptedException e) {
            e.printStackTrace();
          }

          // Update the progress bar
          progressBarHandler.post(new Runnable() {
            public void run() {
              progressBar.setProgress(progressBarStatus);
            }
          });
        }

        // ok, file is downloaded,
        if (progressBarStatus >= 100) {

            // sleep 2 seconds, so that you can see the 100%
            try {
                Thread.sleep(2000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

        }
      }
       }).start();
 }

1 个答案:

答案 0 :(得分:0)

您可以使用Handler更新线程内的ui。或者你可以简单地使用runOnUiThread来更新ui。并且你不想使用setcontentview方法来改变ui,你可以简单地使用layout inflater来获取另一个布局到你的viewgroup。