1

スレッドがタスクを完了した後に 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();
 }
4

1 に答える 1

0

Handler を使用して、スレッド内の UI を更新できます。または、単純に runOnUiThread を使用して UI を更新できます。また、setcontentview メソッドを使用して UI を変更したくない場合は、レイアウト インフレータを使用して別のレイアウトをビューグループにフェッチするだけです。

于 2014-03-26T09:50:34.377 に答える