스마트폰(287)
-
프로젝트 명 바꾸기(rename)
AndroidManifest.xml파일에서 package에서 프로젝트명 변경 Yes OK Rename 창이 나오지 않으면 직접 F2를 눌러 수정해 주시면 됩니다. 수정완료! R 클래스가 추가되어 있다면 삭제 삭제
-
클래스 파일, .java 파일 생성 방법
eclipse 메뉴 > File > New > Class 또는 Package Explorer > \src\패키지네임\ 경로 선택 후 > 마우스 우클릭 > New > Class 선택 사용할 클래스명 입력 > Finish
-
Error- emulator: warning: opening audio input failed / emulator: WARNING: Could not initialize OpenglES emulation, using software renderer./ could not get wglGetExtensionsStringARB 해결방법
에러 메시지 Starting emulator for AVD 'AVD-19' Failed to create Context 0x3005 could not get wglGetExtensionsStringARB emulator: WARNING: Could not initialize OpenglES emulation, using software renderer. could not get wglGetExtensionsStringARB could not get wglGetExtensionsStringARB could not get wglGetExtensionsStringARB could not get wglGetExtensionsStringARB could not get wglGetExtensionsStringARB..
-
Warning-Consider adding android:layout_alignParentStart="true" to better support right-to-left layouts
에러메시지 Consider adding android:layout_alignParentStart="true" to better support right-to-left layouts 해결방법1 Window | Preferences | Android | Lint Error Checking Security: 레벨을 Error -> Warining으로 변경합니다. eclipse 재시작 모든 프로젝트 클린 수행 eclipse > project > clean 해결방법2 When saving files, check for errors 항목 체크 해제 이 경우 관련 warning 과 error 알림을 모두 받지 못하게 될 수 있으니 주의하시기 바랍니다. 해결방법3 AndroidManifest.xml의 applicati..
-
Warning-Implicitly using the default locale is a common source of bugs: Use String.format(Locale, ...) instead
경고 메시지 Implicitly using the default locale is a common source of bugs: Use String.format(Locale, ...) instead 해결 방법 Clean을 수행하면 사라집니다. eclipse > Project > Clean...
-
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으로 접근지정자를 선언해주면 해결됩니다.