1.Android “Only the original thread that created a view hierarchy can touch its views."
解的方式: UI更新
runOnUiThread(new Runnable() { @Override public void run() { // Stuff that updates the UI TextView t1 = (TextView)findViewById(R.id.textView1); t1.setText(message1); } });