IT_Programming 1309

FullScreen DialogFragment 의 내용이 상태바에 가려지는 증상 - Display DialogFragment content below status bar

* 출처 : https://stackoverflow.com/a/46469822 전면 팝업으로 DialogFragment로 풀 스크린(FullScreen) 팝업 다이얼로그를 노출할 경우 UI가 상태바에 가려지는 현상이 발생할 수 있는데... 기본적으로 Dialog는 FLAG_LAYOUT_IN_SCREEN 및 FLAG_LAYOUT_INSET_DECOR 플래그에 적용됩니다. 이 중 FLAG_LAYOUT_INSET_DECOR 속성 때문에 ..

[펌][에러해결법] UnsatisfiedLinkError & Gradle 3.0 프로젝트로 업데이트할 때 JNI 오류 발생 시 조치방법

* 출처 : https://creaby.tistory.com/11 : https://blog.themuser.xyz/android-gradle-3-0-프로젝트로-업데이트할-때-jni-오류-발생-시-조치/ * 참고할만한 자료 : https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html [에러해결법] UnsatisfiedLinkError 안드로이드 개발하면서 다들 한 번..

[펌][Android Studio] The version of Gradle you are using (3.3) does not support the forTasks() method on BuildActionExecuter.

출처 : https://stackoverflow.com/a/44209507 I've just had the same issue. Fixed it by changing Gradle distributionUrl in "gradle-wrapper.properties". Here is what I have configured: #Wed Mar 22 16:13:58 BRT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.or..

[펌] 안드로이드 – 악성 앱을 막기 위한 새로운 권한, REQUEST_INSTALL_PACKAGE

출처 : https://blog.uzuki.live/안드로이드-악성-앱을-막기-위한-새로운-권한-request_install_package/ : https://android-developers.googleblog.com/2017/08/making-it-safer-to-get-apps-on-android-o.html : https://developers-kr.googleblog.com/2017/09/making-it-safer-to-get-apps-on-android-o.html 보통 안드로이드 기기의 정보를 탈취하기 위해서는 ..

[펌] fontFamily 적용 방법 / [fontFamily, fontFeatureSettings] (Android TextView Attributes 8)

출처 : http://blog.naver.com/gi_balja/221139074858 : http://recipes4dev.tistory.com/85 안드로이드 8.0(API 26)부터는 XML을 이용하여 폰트를 추가할 수 있게 되었습니다. 또한 support library를 사용하면 안드로이드 8.0 이하 버전에서도 해당 기능을 사용할 수 있습니다. 오늘은 구글 안드로이드 "Fonts in XML" 글에서 ..