버튼 색을 바꾸고 싶은데 xml에서 변경을 해줘도 그저 보라색이다 ㅠㅠ
그럴땐 !!!!
테마 변경!!
위치는
app > res > values > themes > themes.xml
에 가보면 parent="Theme.Material3.DayNight.NoActionBar" 이렇게 설정되어있다
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight.NoActionBar">
<!-- Customize your light theme here. -->
<!-- <item name="colorPrimary">@color/my_light_primary</item> -->
</style>
<style name="Theme.MyApplication2" parent="Base.Theme.MyApplication2" />
</resources>
parent="Theme.AppCompat.Light"
이렇게 바꿔 주면 !
이제 자유롭게 색이 변경이 된다
![](https://t1.daumcdn.net/keditor/emoticon/friends1/large/006.gif)