https://youtu.be/aYjdfpit6lc android에서는 thread를 이용해서 백그라운드에서 실행될 부분들을 정의해줄 수 있다. 그리고 thread를 활용하면서 메인 실행부와 충동이 있을 수 있기 때문에 thread 안에서는 handler을 이용해서 UI 작업을 하는 것 같다. 1 2 3 4 5 6 7 8 9 10 11 12 13 thread = new Thread() { public void run() { while(isThread){ try { sleep(5000); } catch (InterruptedException e) { e.printStackTrace(); } handler.sendEmptyMessage(0); } } }; thread.start(); Colored by Co..