關於我自己

2018年8月7日 星期二

Android 錯誤碼 ~ 修正方案!!

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);
    }
});