小编典典

如何删除按钮阴影(android)

all

我想从按钮上移除阴影,使其看起来更平坦。

我现在有这个:

带阴影的取消按钮

但我想要这个:

没有阴影的取消按钮


阅读 60

收藏
2022-06-22

共1个答案

小编典典

另一种选择是添加

style="?android:attr/borderlessButtonStyle"

到您的 Button xml,如此处 所述
http://developer.android.com/guide/topics/ui/controls/button.html

一个例子是

<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" />
2022-06-22