How to remove button shadow (android)

2019-01-13 00:04发布

I want to remove the shadow from the button to make it seem more flat.

I have this right now:

cancel button with shadow

But I want this:

cancel button without shadow

10条回答
走好不送
2楼-- · 2019-01-13 00:07

Using this as the background for your button might help, change the color to your needs

<?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>
查看更多
Emotional °昔
3楼-- · 2019-01-13 00:13

A simpler way to do is adding this tag to your button:

android:stateListAnimator="@null"

though it requires API level 21 or more..

查看更多
混吃等死
4楼-- · 2019-01-13 00:14

try : android:stateListAnimator="@null"

查看更多
Lonely孤独者°
5楼-- · 2019-01-13 00:15

Java

setStateListAnimator(null);

XML

android:stateListAnimator="@null"
查看更多
smile是对你的礼貌
6楼-- · 2019-01-13 00:17

Instead of a Button, you can use a TextView and add a click listener in the java code.

I.e.

in the activity layout 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" />

in the activity java file:

TextView btnTextView = (TextView) findViewById(R.id.btn_text_view);
btnTextView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // handler code
            }
        });
查看更多
爱情/是我丢掉的垃圾
7楼-- · 2019-01-13 00:24

for material desing buttons add to button xml style="@style/Widget.MaterialComponents.Button.UnelevatedButton"

查看更多
登录 后发表回答