안드로이드(317)
-
Video (비디오) - VideoView
비디오 동영상 재생을 위해서는 XML레이아웃에 태그를 삽입하는 것 만으로 동영상 플레이어를 바로 구현할 수 있습니다. VideoView 위젯으로 다양한 소스로부터 미디어를 로드할 수 있고 미디어 크기에 따라 자신의 크기를 자동으로 조절할 수 있습니다. 사용 메서드 void setVideoPath (String path) void setVideoURI (Uri uri) 미디어를 로드한 후 재생 및 중지 void start () void stopPlayback () void pause () void seekTo (int msec)
-
Error-Android SDK Content Loader 에러 해결방법
Android SDK Content Loader 가 진행되지 않으며 다른 작업시 eclipse 멈춤 현상 발생. 해결방법 1 C:\javanAndroid\eclipse-jee-kepler-SR2-win32-x86_64\eclipse>eclipse -clean C:\javanAndroid\eclipse-jee-kepler-SR2-win32-x86_64\eclipse> 이하에 있는 방법으로 시도해 보았으나 해결되지 않았습니다. 아래 방법으로 해결된 경우도 있으니 참고하시기 바랍니다. 해결방법 2 "Windows" -> "Preferences" -> "General" -> "Network Connections" Proxy 비활성화 해결방법 3 모든 이클립스창 종료/이클립스 프로세스 종료 선택 후 작업 끝내기 ..
-
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 수행 프로젝트 이름에 특수문자 제거
-
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으로 접근지정자를 선언해주면 해결됩니다.