我想更新Android中的循環中的UI,但我得到一個錯誤,說我在錯誤的線程。我不明白爲什麼,因爲我正在使用處理程序。有沒有人有什麼建議?線程問題,當想要從Android中的後臺線程對UI進行循環更新
TextView textView;
protected Handler handler=new Handler(){
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
textView.setText((String)msg.obj);
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_thread_sleep);
textView=(TextView) findViewById(R.id.TextView1);
init();
}
public void init()
{
CounterThread counterThread=new CounterThread();
counterThread.start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_thread_sleep, menu);
return true;
}
class CounterThread extends Thread {
@Override
public void run() {
super.run();
int counter=0;
handleString("in Thread handler");
try{Thread.sleep(2000); }catch(Exception e){Log.d("Exception", e.toString());}
while(counter<10)
{
counter++;
String counterString=String.valueOf(counter);
handleString(counterString);
try{Thread.sleep(2000); }catch(Exception e){Log.d("Exception", e.toString());}
}//while
}//run
public void handleString(String string)
{
Message msg=handler.obtainMessage();
msg.obj="counter"+" "+string;
handler.handleMessage(msg);
}
}//thread
僅供參考,你已經完全被以這種方式解決它擊敗了使用'Handler'的目的。 「Handler」的意義在於它爲您執行主線程上的代碼,但您必須先適當地調用它才能傳遞消息。 – Devunwired