Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- android 타이머
- ec2 scp 파일 전송
- spring exception stackTrace remove
- 운영체제 작동방식
- 운영체제 다중모드
- 운영체제 멀티 프로그래밍
- 백엔드 포지션 변경
- spring exceptionHandler reposnse stackTrace
- spring 동적 쿼리 주의사항
- IT 직무 변경
- 운영체제 자원관리
- OS 자원관리
- spring responseEntity response stackTrace
- 운영체제 멀티 태스킹
- 개발 포지션 변경
- Android Timer
- aws ec2 scp 파일 전송
- spring dynamic query sql injection
- 운영체제 커널모드
- spring responseEntity response cause
- IT 포지션 변경
- spring paging sort sql injection
- 백엔드 직무 변경
- 운영체제 개념
- 개발 직무 변경
- spring sql injection 방지
- 운영체제 공룡책
- spring exceptionHandler response cause
- spring exception cause remove
- spring sql injection
Archives
- Today
- Total
오늘도 삽질중
android Drawable setBounds Center 본문
반응형
가운데 마이크 이미지처럼 센터로 잡으려면 setBounds 에 해당 값을 세팅하면 됩니다.
imageDrawable = ResourcesCompat.getDrawable(context.resources , R.drawable.icon_micoff, null)
imageDrawable?.let {
it.setBounds( (width/2) - (it.intrinsicHeight/2) , (height/2) - (it.intrinsicHeight/2),
(width/2) + (it.intrinsicWidth/2) , (height/2) + (it.intrinsicHeight/2)
)
canvas?.apply { it.draw(this) }
}
반응형
'안드로이드' 카테고리의 다른 글
호기심으로 찾아본 카카오톡 채팅이미지 사이즈 변환규칙 (0) | 2021.08.07 |
---|---|
Android custom app link with javascript (0) | 2021.06.02 |
Android Chip Background Color Change Programmatically (0) | 2021.04.04 |
Android BehaviorSubject 사용해보기 (0) | 2021.02.18 |
Android Frame Rounding Custom View (0) | 2021.01.26 |
Comments