안녕하세요~ 챠니입니다! :)
이번에는 Button에서 그림자를 제거하는 방법에 대해서 알아보도록 하겠습니다.
Button 그림자 제거 방법
방법 1) Style 수정
Button에 style을 추가하여 그림자를 제거하는 방법이 있습니다.
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="버튼 그림자 제거"
style="?android:attr/borderlessButtonStyle" />
방법 2) android 코드 추가
이번에는 android 코드를 추가하여 수정하는 방법입니다.
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="버튼 그림자 제거"
android:stateListAnimator="@null" />
참고문서
https://developer.android.com/guide/topics/ui/controls/button?hl=ko
다음 Android Developer 홈페이지에 자세한 내용이 나와있으므로 참고하시면 되겠습니다.
질문 또는 궁굼한 부분은 댓글을 남겨주세요! 친절하게 답변드리겠습니다!
응원의 댓글은 저에게 큰 힘이 된답니다! :)
즐거운 하루되세요!
깃허브 보러 놀러오세요 👇 (맞팔환영)
https://github.com/younminchan
'🖥 Programming > 📱 Android (Kotlin)' 카테고리의 다른 글
[Android]uses-feature설명 및 Google Play검색 안되는 현상 해결방법 (2) | 2023.05.09 |
---|---|
[Android][kotlin] Android 12 / SameSite=None; Secure관련 (0) | 2023.04.12 |
[Android] APK파일 이름 변경하기 (0) | 2023.03.15 |
[Android][kotlin] User-Agent Mobile 인식하게 만들기(ex. 갤럭시 폴드 카카오톡 공유하기 대응) (0) | 2023.03.13 |
[Android][kotlin] registerForActivityResult 사용방법 (0) | 2023.02.02 |
[Android][kotlin] WebView 동영상 자동재생 해결방법 (0) | 2023.01.21 |
[Android][kotlin] Android Share 공유하기 기능 구현방법 (0) | 2023.01.20 |
[Android][kotlin] WebView에서 Daum 지도 두손가락 확대/축소 안되는 현상관련 (0) | 2023.01.19 |