我编写了以下代码,它基本上启动了一个Thread,TextView的文本从该Thread中被更改。
我期待一个错误,因为我从另一个线程访问TextTiew(UI元素)而不是主线程。
但它运作正常。据我所知,这不应该是可能的 我不明白,我错过了什么?
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tv = (TextView) findViewById(R.id.view1);
tv.setText(Thread.currentThread().getName());
Thread theThread = new Thread(new aRunnable(tv));
theThread.start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
public class ARunnable implements Runnable{
TextView tv;
public ARunnable(TextView tv){
this.tv = tv;
}
@Override
public void run() {
tv.setText(tv.getText()+"----" + Thread.currentThread().getName());
}
}
答案 0 :(得分:1)
docs说Do not access the Android UI toolkit from outside the UI thread.
他们并没有说Android本身包含任何代码来阻止您这样做。这只是一个坏主意,可能会产生意想不到的副作用。
您应该调用Activity.runOnUiThread()
从其他线程更新UI。