thread 썸네일형 리스트형 thread 메인 GUI 쓰레드에서 Background 로 동작하는 쓰레드를 만들어 놓고, Network 쓰레드에서 메인 GUI 에 있는 Background 쓰레드를 호출하면 해결이 가능합니다. private void mainProcessing() { // 시간이 많이 드는 작업을 자식 스레드로 옮긴다. Thread thread = new Thread(null, doBackgroundThreadProcessing, "Background"); thread.start(); } // 백그라운드 처리 메서드를 실행하는 Runnable. private Runnable doBackgroundThreadProcessing = new Runnable() { public void run() { backgroundThreadProce.. 더보기 이전 1 다음