部分手机(如三星S7),在设置Button的enable状态时,如果使用的圆角图片,在角落会出现灰色阴影,只需要在Button属性中加入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" />
参考:
How to remove button shadow (android)
https://developer.android.com/guide/topics/ui/controls/button
网友评论