Android button去掉背影阴影效果

1.如果你的button没有设置过style的话直接在button里加入这句话

​
style=”?android:attr/borderlessButtonStyle”

​

2.如果你的button设置过style的话  ,在style里加入

parent="@style/Widget.AppCompat.Button.Borderless"

即:

<style name="btn_right_angle_bg_text" parent="@style/Widget.AppCompat.Button.Borderless">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">48dp</item>
    <item name="android:background">@drawable/btn_right_angle_selector</item>
    <item name="android:textSize">16sp</item>
    <item name="android:textColor">@color/white</item>
</style>

猜你喜欢

转载自blog.csdn.net/qq_36488374/article/details/81231511