분류 전체보기
-
Duplicate class javax.annotation.CheckForNull found in modulesAndroid 2020. 7. 3. 16:27
타이틀로 시작하는 에러 화면 해결하려면 앱수준 build.gradle 안에 android{} 안에 아래 추가 applicationVariants.all { variant -> variant.getRuntimeConfiguration().exclude group: 'com.google.code.findbugs', module: 'jsr305' variant.getRuntimeConfiguration().exclude group: 'com.google.code.findbugs', module: 'annotations' }
-
[Android] 알파값, 투명도 0~100% to Hex Opacity ValuesAndroid 2020. 6. 29. 15:09
100% — FF 99% — FC 98% — FA 97% — F7 96% — F5 95% — F2 94% — F0 93% — ED 92% — EB 91% — E8 90% — E6 89% — E3 88% — E0 87% — DE 86% — DB 85% — D9 84% — D6 83% — D4 82% — D1 81% — CF 80% — CC 79% — C9 78% — C7 77% — C4 76% — C2 75% — BF 74% — BD 73% — BA 72% — B8 71% — B5 70% — B3 69% — B0 68% — AD 67% — AB 66% — A8 65% — A6 64% — A3 63% — A1 62% — 9E 61% — 9C 60% — 99 59% — 96 58% — 94 57% — 91 5..
-
정부24 pdf 프린트Tip 2020. 6. 27. 00:28
공공기관이나 특정 사이트에서는 실제로 프린터가 있어야만 프린트를 할 수 있습니다. 하지만 가상의 실제?! 프린터를 만들어서 바로 pdf로 만들 수 있는 프로그램이 있어 소개합니다 '모두의 프린터' 입니다. 현재 최신 버전은 v2.30 입니다. 실제 문서를 실제로 프린트해서 스캔 할 필요가 없어서 정말 유용하게 사용했습니다 ^^ https://modu-print.tistory.com/ 모두의 프린터 제한 없는 Pdf 출력 프로그램 모두의프린터 공식블로그, 각종 등본을 pdf 로 복잡한 설정없이 모두의프린터와 함께하세요 기타문의 : mop.pirogom@gmail.com modu-print.tistory.com
-
[Android] adb installAndroid 2020. 6. 24. 19:23
adb install app installation - push a single package to the device and install it adb install test.apk app installation - push multiple APKs to the device for a single package and install them adb install-multiple test.apk test2.apk app installation - push one or more packages to the device and install them atomically adb install-multi-package test.apk demo.apk replace existing application reins..
-
[Android] 갤러리에서 이미지 선택 후 이미지뷰에서 보여주기Android 2020. 6. 23. 16:03
버튼 onClick 이벤트에 아래처럼 구현 Java Intent intent = new Intent(Intent.ACTION_PICK); intent. setDataAndType(android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*"); startActivityForResult(intent, REQUEST_CODE); Kotlin val intent = Intent(Intent.ACTION_PICK) intent.setDataAndType( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*" ) startActivityForResult(intent, REQUEST_CODE) onAc..