본문 바로가기

Android

[Android] Button의 그림자를 없애고 싶을 때

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello, World!"
    android:stateListAnimator="@null"/>
<!-- Elevation을 설정하는 Animator이 기본적으로 있는데 @null로 주기 -->