AsynkTask를 쓰다보면 자주 만나는 에러다. Caused by: android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views. doInBackground에서는 UI 스레드에 직접 접근해서는 안되는데 발생한다. 즉, setText 같은 작업은 onPostExecute에서 처리 하도록 하자.