在子執行緒中更新UI畫面

使用 runOnUiThread

runOnUiThread(new Runnable() {
@Override
public void run() {
//UI更新
}
});

留言