코틀린(Kotlin)/TIL

[코틀린(Kotlin)] 코틀린에서 버튼(Button) 색깔 바꾸기

초보왕보초 2024. 1. 10. 20:48
728x90

 

xml에서 <Button> 색깔을 바꾸려고 background에 @drawable/~~ 해줬는데 안 돼서 찾아봤다

res → values → themes.xml 에서 parent="Theme.AppCompat" 해주면 된다고 하길래 바꿔줬더니

activity_detail.xml

 

위처럼, 백그라운드 지정을 안 해준(?) 뷰들은 전부 이런 식으로 나왔다

그래서 다시 theme.xmlparent="Theme.Material13.DayNight.NoActionBar"로 되돌려놓고 더 검색해 봤더니

그냥 Button 뷰 대신 AppCompatButton 뷰를 사용하면 된다고 해서 바꿔줬다

activity_detail.xml - AppCompatButton

728x90