Android 去掉button的阴影效果

1.单个button控件
<Button style="?android:attr/borderlessButtonStyle"/>
2.整个App中所有button的阴影效果

Android Theme 属性中加入“Button.Borderless”

 <style name="Theme.AppCompat.Light.NoActionBar.Application" parent="@style/Theme.AppCompat.Light.NoActionBar">
        <item name="android:buttonStyle">@style/Widget.AppCompat.Button.Borderless</item>
    </style>

猜你喜欢

转载自blog.csdn.net/m0_46728513/article/details/107665548