본문 바로가기
Programing/android

[android studio] 버튼에 배경색이 바뀌지 않는 오류

by TEXTBOX 2021. 10. 24.
728x90

버튼 속성 backgroundtint로 인하여 배경색이 변경되지 않는 경우

button 을 androidx.appcompat.widget.AppCompatButton으로 사용

<Button
    android:layout_width=""
    android:layout_height="" />

을 아래 버튼으로 변경시 문제가 해결되었다.

<androidx.appcompat.widget.AppCompatButton
    android:layout_width=""
    android:layout_height="" />

 

변경후 기능상이나 기존 코드에서 문제가 되는 부분이 없어 변경하는것으로 해결하였다.

728x90

댓글