분류 전체보기(129)
-
BindingAdapter 매개변수 두개 이상일때 적용법
imageUrl과 error가 모두 ImageView 객체에 사용되며 imageUrl은 문자열이고 error는 Drawable이면 어댑터가 호출됩니다. 속성의 하나라도 설정될 때 어댑터가 호출되도록 하려면 다음 예에서와 같이 어댑터의 선택적 requireAll 플래그를 false로 설정할 수 있습니다. @BindingAdapter(value = ["imageUrl", "placeholder"], requireAll = false) fun setImageUrl(imageView: ImageView, url: String?, placeHolder: Drawable?) { if (url == null) { imageView.setImageDrawable(placeholder); } else { MyImageL..
2022.06.28 -
Nginx Location 동적 경로 지정
모임별 폴더를 생성하여 생성된 폴더 위치에서 이미지를 호출 하여 보여 줄려고 아래와 같이 적용 하니 작동 하였다. #ex) 동적이미지 적용방법 location ~ ^/img/moim/(?.*)$ { alias "이미지파일 경로"/$name; } 적용하면서 생긴 굼굼증들 1. "/img/moim" 에서 "/img/moims" s 를 붙이니깐 동작이 안되었다 왜일까? s가 정규식에 일부일까?
2022.06.28 -
requirements.txt로 패키지 관리하기
pip list requirements.txt
2022.06.25 -
Glide WithCrossFade 사용시 placeholder가 사라지지 않음
보호되어 있는 글입니다.
2022.06.04 -
Splash (스플래시 화면 크기)
스플래시 화면 크기 시작 화면 아이콘은 다음과 같이 적응형 아이콘 과 동일한 사양을 사용 합니다. 브랜드 이미지: 200×80 dp여야 합니다. 아이콘 배경이 있는 앱 아이콘: 240×240 dp이고 지름이 160 dp인 원 안에 맞아야 합니다. 아이콘 배경이 없는 앱 아이콘: 288×288 dp이고 지름이 192 dp인 원 안에 맞아야 합니다. 예를 들어 이미지의 전체 크기가 300×300dp인 경우 아이콘은 지름이 200dp인 원 안에 맞아야 합니다. 원 밖의 모든 것은 보이지 않게 됩니다(마스크됨). 그림 3 : 각각 단색 및 투명 배경의 시작 화면 아이콘 크기 참고 사이트 https://developer.android.com/guide/topics/ui/splash-screen Splash scr..
2022.05.27 -
Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported`
오류 에러 Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. 원인 기존에는 설정하지 않아도 기본으로 적용됐으나 Android 12 부터는 필수로 지정 해결 방법 AndroidManifest.xml 파일에서 android:exported를 설정 andro..
2022.05.27