본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] 현재 thread가 main thread 인지 체크하는 방법.

by 돼지왕 왕돼지 2013. 7. 4.
반응형


 현재 thread 가 main thread 인지 체크하는 방법.

 


[android] 현재 thread가 main thread 인지 체크하는 방법.


View manipulation 을 비롯하여 여러가지 상황에서 thread 제한을 걸어야 하는 경우가 생기기 마련이다.


그런 경우 class의 constructor 혹은 function call 에서 해당 함수들을 호출한 thread 가 main thread 인가 체크해야 하는 경우가 생긴다. 이 확인은 간단하다.


Looper.myLooper() == Looper.getMainLooper()





반응형

댓글