Android App
[android] Thread에서 UI Update하기
동동(이재동)
2014. 5. 13. 16:01
여러가지 방법이 있지만 아래와 post를 이용해 해보았다.
다른 방법은 천천히 공부해봐야겠다.
recieveMsgTextView.post(new Runnable(){
public void run() {
recieveMsgTextView.setText(msg);
}
});
참고 :http://variousapp.egloos.com/1403533