Dev/Error 18

Android Error - Caused by: android.view.InflateException: Binary XML file line #0:

Android XML 관련 에러 Caused by: android.view.InflateException: Binary XML file line #0: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object referenceCaused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference XML 에서 구현해야 하는데 라고 소문자로 적어서 발생했다. 참고 : https://..

Dev/Error 2018.02.07

Listview 관련 Error - The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread

Listview 관련 ErrorThe content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread 상황 : 현재 SM-T813 디바이스 에서 발생. 성능이 더 좋은 디바이스(SM-T815NO)에서는 발생하지 않는 이슈. 해결 : 참고 블로그의 말대로 UI 쓰레드를 돌리면서 진행. 다만, 이런 문제도 디바이스 성능이 뛰어나면 나오지 않는걸 보고, 디바이스가 너무 좋으면 코드가 개판이래도 돌아가니깐, 내가 짠 코드가 문제 없구나를 생각할..

Dev/Error 2017.12.27

카메라 앱 열면서 앱 중지 android.os.FileUriExposedException

카메라 앱 열면서 앱 중지android.os.FileUriExposedException 현상 : 카메라 앱 열면서 앱 중지 원인 : targetSdkVersion 을 올렸기 때문에 발생 (23 -> 26)해결 : 이전대로 targetSkdVersion 을 낮추던지 아래와 같이 파일 접근 방법을 바꾸던지Uri photoURI = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".my.package.name.provider", createImageFile()); E/AndroidRuntime: FATAL EXCEPTION: mainProcess: com.iofit.tablet, PID: 30756an..

Dev/Error 2017.12.22

Android ConnectivityManager.getNetworkInfo() NullPointerException

ConnectivityManager.getNetworkInfo() NullPointerException 디바이스 : 태블릿 Galaxy Tab S2 (SM-T813)OS : AndroidOS Version: 7.0특징 : SM-T815N0 은 괜찮음. ConnectivityManager connectivityManager = (ConnectivityManager) getActivity().getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo mobile = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); NetworkInfo wifi = connectivityManager.ge..

Dev/Error 2017.12.21

trouble processing "javax/xml/XMLConstants.class" / 'com.squareup.retrofit2:converter-simplexml:2.1.0'

trouble processing "javax/xml/XMLConstants.class" 에러 문제아마도 이게 문제'com.squareup.retrofit2:converter-simplexml:2.1.0' 이슈 : Release 빌드가 되지 않는 문제가 생겼다. Error:trouble processing "javax/xml/XMLConstants.class":Error:Ill-advised or mistaken usage of a core class (java.* or javax.*)Error:when not building a core library.Error:This is often due to inadvertently including a core library fileError:in your a..

Dev/Error 2017.12.18

MediaCodec DuqueueOutputBuffer Error / 미디어코덱 에러

MediaCodec DuqueueOutputBuffer Error / 미디어코덱 에러 현상 : 녹화 기능을 구성하고 녹화를 저장할때 발생하는 에러 모델 : 갤럭시 TabA10.1 (2016) - SM-T580 (SM-T815 외 다른 기종은 괜찮음)OS버전 : 6.0.1 java.lang.IllegalStateExceptionat android.media.MediaCodec.native_dequeueOutputBuffer(Native Method) at com.app.ui.media.MediaEncoder.drain(MediaEncoder.java:334) at com.app.ui.media.MediaEncoder.run(MediaEncoder.java:150) at java.lang.Thread.run..

Dev/Error 2017.12.13

MediaRecorder Stop() Error

리뷰 기능 구성 중 - MediaRecorder Stop() Error MediaRecorder 을 통해서 화면의 스크린 캡처를 저장하려는 중 MediaRecorder.stop() 메서드를 실행할때 뜨는 오류.-> 현재 Lenovo PHAB2 Pro (PB2-690M) 에서 발생, Samsung 주력(?) 모델 및 LG 주력(?) 모델에서는 무사히 넘어감. java.lang.RuntimeException: stop failed.at android.media.MediaRecorder.stop(Native Method) 해결책https://github.com/saki4510t/ScreenRecordingSample

Dev/Error 2017.12.12