eclipse(495)
-
자바 버전확인 경로
http://java.com/ko/download/installed.jsp
-
Error-Description Resource Path Location Type - Conversion to Dalvik format failed: Unable to execute dex: GC overhead limit exceeded
에러 메시지 Description Resource Path Location Type Conversion to Dalvik format failed: Unable to execute dex: GC overhead limit exceeded 72MapDemo Unknown Android Packaging Problem 해결방법 필요한 라이브러리가 없어서 에러 발생했으며 해당 프로젝트에 사용 라이브러리를 추가해 주면 해결됩니다. 프로젝트 선택 > 마우스 우클릭 > Build Path > Configure Build Path.. Add Library... > User Library 선택 > Next User Libraries ... > New ... > 원하는 라이브러리 이름 입력 > System library..
-
SharedPreferencesDemo-SharedPreferences객체를 통한 데이터 저장하기
SharedPreferences객체를 통한 데이터 저장하기 강의 내용 activity_main.xml LinearLayout(Vertical) 변경 Graphical Layout > Form Widgets-TextView 추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Text Fields-Plain Text 추가 Graphical Layout > Form Widgets-ProgressBar(Normal) 추가 Graphical Layout > Composite-ListView 추가 Graphic..
-
Error-Case variant exists
Import시 case variant exists 에러가 발생 해결방법 동일 이름으로된 다른 프로젝트가 있는지 확인 후 import 수행 프로젝트 이름에 특수문자 제거
-
Git Sync
로컬저장소에서 저장한 내용 원격저장소에 저장하기 Git Sync... Pull > Push > OK Remote URL저장할 원격저장소 경로Out Commits로컬 저장소에서 작업한 내용(커밋한 내용)Pull원격저장소내용을 로컬 저장소로 가져옴 작업내용의 버전 비교해서 TortoiseGit이 알려줌In Commits원격저장소에서 다른 사람이 커밋한 내용 Push로컬저장소에서 작업한 내용을 원격저장소에 저장
-
Error-D/dalvikvm(1904): newInstance failed: Lkr/android/actionbardemo/MainActivity; not accessible to Landroid/app/Instrumentation;
07-24 02:42:16.148: D/dalvikvm(1904): newInstance failed: Lkr/android/actionbardemo/MainActivity; not accessible to Landroid/app/Instrumentation; 해결방법 클래스에 대한 접근 지정자를 확인해 보시기 바랍니다. MainActivity클래스에 접근지정자가 빠져 있어서 실행과 동시에 중지 되어 버립니다. public으로 접근지정자를 선언해주면 해결됩니다.