[Android Studio] Button 아래의 그림자 없애기

김진호·2023년 8월 14일
0

Android

목록 보기
5/5

이유는 모르겠지만, 기본적으로 Button을 사용하면 기본적으로 아래에 그림자가 생긴다.

"구글로 시작하기" 버튼의 하단처럼 그림자가 지는 것을 확인할 수 있다.

아래와 같이
android:stateListAnimator="@null"
를 추가해주면, 그림자를 없앨 수 있다.

        <Button
            android:id="@+id/login_google"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_marginBottom="12dp"
            android:background="@drawable/login_button2"
            android:gravity="center"
            android:text="구글로 시작하기"
            android:textSize="17dp"
            android:textStyle="bold"
            android:stateListAnimator="@null"/>
<!-- Elevation을 설정하는 Animator이 기본적으로 있는데 @null로 주기 -->

profile
멋쟁이

0개의 댓글