経過時間に基づいて UI を更新するタスクを実行しようとしています。コードは次のとおりです。
私の OnCreate メソッド:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tx = (TextView)findViewById(R.id.textView);
startTime = System.nanoTime();
estimatedTime = (System.nanoTime() - startTime) / 1000000000;
tx.postInvalidate();
System.out.println(""+estimatedTime);
MainActivity.this.runOnUiThread(new Runnable(){
public void run() {
while (estimatedTime <= 100){
System.out.println(""+estimatedTime);
if(estimatedTime == 10){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Shri Ram Raksha Stotram");
System.out.println("Yay");
}
if(estimatedTime == 20){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Inatializing");
System.out.println("Yay");
}
if(estimatedTime == 30){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Preparing to install");
System.out.println("Yay");
}
if(estimatedTime == 40){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Installing");
System.out.println("Yay");
}
if(estimatedTime == 50){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Installed");
System.out.println("Yay");
}
if(estimatedTime == 60){
TextView tx = (TextView)findViewById(R.id.textView);
tx.setText("Unzipping packages...");
System.out.println("Yay");
}
estimatedTime = (System.nanoTime() - startTime) / 1000000000;
}
}
});
}
上記のコードはすべて OnCreate メソッドにありますが、RunonUI スレッドを実装した後でもテキストビューを更新できません。どこが間違っていますか?