Android(38)
-
[Android/안드로이드] android material Design 사용하기
안드로이드에서 머티리얼 디자인 사용하기를 시작해보겠습니다. 1. build.gradle(:project) - repositories 섹션에 google() 추가 allprojects { repositories { ... google() ... } } 2. build.gradle(:app) - dependencies 섹션에 라이브러리 추가 (최신 버전 확인 Google Maven Repository 확인) dependencies { ... //material implementation "com.google.android.material:material:$material_version" } 3. AppCompatActivity 를 사용 4. app 테마에서 Material Components theme을 상..
2020.04.24 -
[Android/안드로이드] java.io.IOException(Cleartext HTTP traffic to 예외 해결
발생 java.io.IOException(Cleartext HTTP traffic to 원인 안드로이드에서 기본적으로 Http 접근을 허용하지 않기때문에 해결 방법 Http URL 접근 허용 태그 추가 끝!
2020.04.23 -
[Android/안드로이드] Kotlin에서 Glide 에러 Glide error Failed (to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:compiler in your application and a @GlideModule annotated ..
Kotlin 에서 Glide error 해결 방법 Glide error Failed (to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:compiler in your application and a @GlideModule annotated AppGlideModule implementation or LibraryGlideModules will be silently ignored) 1. build.gradle(:app) apply plugin: 'kotlin-kapt' dependencies { //glide implementation "c..
2020.04.23 -
[Android/안드로이드] java.lang.IllegalArgumentException: Unable to create converter for class "custom model"
"java.lang.IllegalArgumentException: Unable to create converter for class "custom model" 원인 : 네트워크 통신시 converter 가 초기화 되지 않았기 때문에 발생하는 익셉션 해결 방법 : 1. GsonConverterFactory gradle 추가 implementation 'com.google.code.gson:gson:2.8.5' 2. retrofit 초기화 코드에 addConverterFactory 추가 .addConverterFactory(GsonConverterFactory.create()) 끝!!
2020.04.16 -
[Android/안드로이드] Couldn't find meta-data for provider with authority io.reactivex.android.provider 버그 픽스 방법
[원인] - 카메라 실행시 나타나는 버그 [해결방법] AndroidManifest.xml applicationId은 package name
2020.04.07 -
[Android/안드로이드] webview image 꽉찬화면 적용 방법
webview.loadData("${mContent}", "text/html", "UTF-8") head 태그 사이에 추가
2020.02.20