error(2)
-
Android Error java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
Android Error java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() 기존:Handler mHandler = new Handler(); 해결:Handler mHandler = new Handler(Looper.getMainLooper()); 참고:https://stackoverflow.com/questions/6369287/accessing-ui-thread-handler-from-a-service
2017.09.25 -
이클립스 .classpath (액세스가 거부되었습니다)
라이브러리가 맞지 않아서 발생하는 에러 내컴퓨터 -> 해당 프로젝트 로 이동 - > 보기 -> 숨겨진항목 모두 보이기 선택을하고나서 .classpath 부분을 클릭하고 속성을 클릭 -> 특성 부분에서 숨김을 풀어 준다 그럼 저런 에러 메세지가 사라질것이다~
2014.07.30