爲什麼某些ui更新可以在特殊情況下在Non_UI線程上運行? 例如:某些ui更新可以在特殊情況下在Non_UI線程上運行
Textview textView;
public void onCreate(Bundle savedInstanceState) {
textView = (TextView) findViewById(R.id.my_text);
new Thread() {
textView.setText("i can change the textview's text");
}.start();
}
我很困惑,當機器人到檢查UI動作是在UI線程上運行?一段時間之後?
對不起,我錯過了運行方法。但新的線程(){ public void run(){ textView.setText(「我可以改變textview的文本」); } } .start();但是這也是罰款。 – asfman 2011-06-09 11:59:12