에러 메시지(45)
-
Error-.onLoad가 loadNamespace()에서 'rJava'때문에 실패했습니다(rJava 로드 실패) - RStudio Error
에러 메시지 필요한 패키지를 로딩중입니다: rJava Error : .onLoad가 loadNamespace()에서 'rJava'때문에 실패했습니다: 호출: inDL(x, as.logical(local), as.logical(now), ...) 에러: unable to load shared object 'C:/Users/yuriyuri/Documents/R/win-library/3.1/rJava/libs/x64/rJava.dll': LoadLibrary failure: 지정된 모듈을 찾을 수 없습니다. Error: 패키지 'rJava'는 로드되어질 수 없습니다 해경방법 1 64bit 윈도우에서 32bit용 자바버전을 사용하고 있는 경우 발생할 수 있습니다. JRE or JDK 를 해당 비트의 버전으로 설..
-
Error-Rendering Problems - Missing styles. Is the correct theme chosen for this layout? (Android Studio)
에러 메시지 Rendering Problems Missing styles. Is the correct theme chosen for this layout? Use the Theme combo box above the layout to choose a different layout, or fix the theme style references. Failed to find style 'textViewStyle' in current theme (4 Similar errors not shown) 원인 초기 프로젝트 생성시 관련 파일들을 정상적으로 로딩하지 못해서 생긴 이슈 해결방법 Android Studio >>> File >>> Invalidate Caches / Restart… 수행 Invalidate an..
-
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으로 접근지정자를 선언해주면 해결됩니다.