如何删除按钮阴影(Android)


Answers:


403

另一种选择是添加

style="?android:attr/borderlessButtonStyle"

此处的http://developer.android.com/guide/topics/ui/controls/button.html中记录到您的Button xml

一个例子是

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

这将删除按钮样式,即阴影和浮雕。添加带有形状的选择器是可选的。这是一个更准确的答案。
JuanJoséMeleroGómez'16

35
此外,我对按钮使用了自定义样式。您可以从以下方式扩展自定义样式:<style name =“ MyCustomButtonStyle” parent =“ Widget.AppCompat.Button.Borderless”>
Tobliug

124

一种更简单的方法是将此标签添加到您的按钮中:

android:stateListAnimator="@null"

尽管它要求API级别21或更高。


2
对我非常
有用

1
我更喜欢这种方法,它更灵活。
Ayejuni Ilemobayo Kings

@Alon Kogan,使用该android:stateListAnimator 属性有向后兼容性吗?
blueware

该解决方案允许您创建必须继承自borderlessButtonStyle样式的样式bot ,从而为您提供更大的灵活性。
JuanJoséMeleroGómez19年

这只是对我
有用的

61

我使用自定义样式

<style name="MyButtonStyle" parent="@style/Widget.AppCompat.Button.Borderless"></style>

不要忘记添加

<item name="android:textAllCaps">false</item>

否则,按钮文本将在UpperCase中。


59

科特林

stateListAnimator = null

爪哇

setStateListAnimator(null);

XML格式

android:stateListAnimator="@null"

2
容易和干净。
JCasso

23

尝试: android:stateListAnimator="@null"


9
尽管这可以解决OP的问题,但我建议向其中添加一些上下文。为什么会有帮助?同样,“尝试一下”有点误导。您确定它将解决问题,还是只是猜测?如果是这样,您应该写评论。
GergelyPolonkai



6

将其用作按钮的背景可能会有所帮助,根据需要更改颜色

<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape android:shape="rectangle">
            <solid android:color="@color/app_theme_light" />
            <padding
                android:left="8dp"
                android:top="4dp"
                android:right="8dp"
                android:bottom="4dp" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/app_theme_dark" />
            <padding
                android:left="8dp"
                android:top="4dp"
                android:right="8dp"
                android:bottom="4dp" />
        </shape>
    </item>
</selector>

4
您能解释一下这是如何工作的吗?它并没有消除我的阴影。
CACuzcatlan '16

它将原始背景替换为阴影,并将其替换为纯色背景
dlohani

3

@ Alt-Cat答案对我有用!

R.attr.borderlessButtonStyle不包含阴影。

而且按钮的文档很棒。

另外,您可以在第二个构造函数中的自定义按钮上设置此样式。

    public CustomButton(Context context, AttributeSet attrs) {
        this(context, attrs, R.attr.borderlessButtonStyle);
    }

3

以上所有答案都是不错的选择,但我建议其他选择:

<style name="FlatButtonStyle" parent="Base.Widget.AppCompat.Button">
 <item name="android:stateListAnimator">@null</item>
 <!-- more style custom here --> 
</style>


它类似于Alon Kogan(stackoverflow.com/a/39122825/2914140)。
CoolMind

与上面的5ish有什么不同?
zeroDivider

2

可以使用TextView并在Java代码中添加单击侦听器来代替Button。

在活动布局xml中:

<TextView
    android:id="@+id/btn_text_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimaryDark"
    android:text="@string/btn_text"
    android:gravity="center"
    android:textColor="@color/colorAccent"
    android:fontFamily="sans-serif-medium"
    android:textAllCaps="true" />

在活动java文件中:

TextView btnTextView = (TextView) findViewById(R.id.btn_text_view);
btnTextView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // handler code
            }
        });

这不是正确的答案,但是您实际上帮助我解决了类似的问题,谢谢!

啊哈!好主意-让我快速解决
Rohit Kumar
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.