android5.0 AppCompat上去掉按钮阴影

2017-07-17  本文已影响0人  iBoss

1、style/Widget.AppCompat.Button.Borderless 这个需要用在我们需要给按钮添加自定义的样式的时候。

<style name="Button" parent="@style/Widget.AppCompat.Button.Borderless">  
    <item name="android:layout_width">match_parent</item>  
    <item name="android:layout_height">@dimen/item_height</item>  
    <item name="android:gravity">center</item>  
</style>  

2、style=”?android:attr/borderlessButtonStyle”

<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />

上一篇下一篇

猜你喜欢

热点阅读