How to remove button shadow (android)

前端 未结 10 1870
失恋的感觉
失恋的感觉 2020-12-07 11:16

I want to remove the shadow from the button to make it seem more flat.

I have this right now:

\"cancel

10条回答
  •  醉梦人生
    2020-12-07 11:23

    Kotlin

    stateListAnimator = null
    

    Java

    setStateListAnimator(null);
    

    XML

    android:stateListAnimator="@null"
    

提交回复
热议问题