android5.0 AppCompat上去掉按钮阴影

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

  

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

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" />

你可能感兴趣的:(android5.0 AppCompat上去掉按钮阴影)