android main() 썸네일형 리스트형 안드로이드 메인클래스 안드로이드 메인클래스 android.app.ActivityThread 에서 main() 메서드를 호출 하면서 애플리케이션이 실행된다. main() 메서드에서는 Looper.prepareMainLooper(), Looper.loop() 로 Looper를 준비하고 구동 시킨다. sMainThreadHandler 에서 애플리케이션의 다양한 이벤트를 처리한다. loop() 메서드는 무한루프와 blocking 으로 동작 하므로 main() 메서드는 프로세스가 종료 되기 전까지 종료되지 않는다. public static void main(String[] args) { ... Looper.prepareMainLooper(); ActivityThread thread = new ActivityThread(); threa.. 더보기 이전 1 다음