반응형
[2021.11.16] How to change background color of the button on Android?
이번 게시글은 안드로이드에서 버튼 배경색을 변경하는 방법에 대해 알아보도록 하자.
방법은 간단하다.
res -> layout -> activity_main.xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="#000000"
android:onClick="startBarCodeReaderCustomActivity"
android:text="QR코드리더 커스텀 액티비티"
android:textColor="#DCEDC8" />
* android:backgroundTint="#000000" 로 설정해주면 된다. (android:background="#000000" 변경해도 변경 안됨)
반응형
댓글