如何删除按钮阴影(android)

问题描述 投票:112回答:11

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

我现在有这个:

但我想要这个:

android button shadow
11个回答
310
投票

另一种选择是添加

style="?android:attr/borderlessButtonStyle"

这里记录的按钮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" />

1
投票

以上所有答案都很棒,但我会建议另一种选择:

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

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


将此添加到您的活动中也可以帮助您。


87
投票

一个更简单的方法是将此标记添加到按钮:

android:stateListAnimator="@null"

虽然它需要API等级21或更高..


43
投票

我使用自定义样式

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

31
投票

Java的

setStateListAnimator(null);

XML

android:stateListAnimator="@null"

22
投票

尝试:android:stateListAnimator="@null"


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>

5
投票

材质设计按钮添加到按钮xml:qazxsw poi


3
投票

@ Alt-Cat的回答对我有用!

R.attr.borderlessButtonStyle不包含阴影。

按钮的文件很棒。

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

style="@style/Widget.MaterialComponents.Button.UnelevatedButton"

2
投票

您可以使用TextView并在Java代码中添加单击侦听器,而不是Button。

在活动布局xml中:

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

在活动java文件中:

<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" />
© www.soinside.com 2019 - 2024. All rights reserved.