Notice
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 | 31 |
Tags
- bottom
- Android
- camera
- 스피너
- Ext
- ListvView
- 리스트뷰
- 그래들
- Unity
- spinner
- Round Square
- gradle
- 조이스틱
- Handelr
- 안드로이드
- layout
- GlobalComponent
- 레이아웃
- DP
- UI
- WebCamTexture
- 유니티
- webcam
- GPS
Archives
- Today
- Total
JY-Dev Tech Blog
안드로이드(Android) - Drawable Shape Color Change 본문
[OverView]
이번에는 Drawable Shape의 Solid 색상을 변경하는 방법에 대해 알아보겠습니다.
[Code]
var drawable = ContextCompat.getDrawable(this,R.drawable.circle_gray) as GradientDrawable
drawable.setColor(ContextCompat.getColor(this,R.color.colorAccent))
imageView.setImageDrawable(drawable)
drawable을 GradientDrawable로 캐스팅한후 setColor를 통해 원하는 색상을 넣어주시면 됩니다.
'안드로이드 > 레이아웃' 카테고리의 다른 글
안드로이드(Android) - font 적용시키기 (0) | 2020.10.08 |
---|---|
안드로이드(Android) - infinite circuler progressbar (0) | 2020.09.24 |
안드로이드(Android) - SearchView TextStyle 변경 (0) | 2020.08.14 |
안드로이드(Android) - Custom Spinner 만들기 (0) | 2020.08.07 |
안드로이드(Android) - Spinner Arrow Button(화살표 버튼) 제거 (0) | 2020.08.07 |
Comments