카테고리 없음

[안드로이드 스튜디오] 버튼색 변경이 안됄 때 / 보라색 바꾸고 싶다.

yangcotton 2023. 8. 30. 16:12

버튼 색을 바꾸고 싶은데 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"

이렇게 바꿔 주면 !

이제 자유롭게 색이 변경이 된다