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
'Programing > android' 카테고리의 다른 글
[android studio] 배경화면 이미지용량으로 인한 에러 (0) | 2021.10.29 |
---|---|
[android studio] 앱 아이콘 만들기 (0) | 2021.10.28 |
[android studio] camera 기능 추가 (0) | 2021.10.24 |
[android studio] design 라이브러리 추가시 오류 (0) | 2021.10.24 |
[android studio] android build.gradle 에 androidX이외의 라이브러리 추가 후 오류시 (0) | 2021.10.24 |
댓글