Как удалить тень кнопки (android)

Я хочу удалить тень из кнопки, чтобы она казалась более плоской.

У меня это прямо сейчас:

cancel button with shadow

Но я хочу это:

cancel button without shadow

Ответ 1

Другой вариант - добавить

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

Ответ 2

Простейший способ сделать это добавить этот тег к вашей кнопке:

android:stateListAnimator="@null"

хотя для этого требуется уровень API 21 или более.

Ответ 3

Я использую собственный стиль

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

Не забудьте добавить

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

в противном случае текст кнопки будет в верхнем регистре.

Ответ 4

Java

setStateListAnimator(null);

XML

android:stateListAnimator="@null"

Ответ 5

попробуйте: android:stateListAnimator="@null"

Ответ 6

Кнопки выбора материала добавить к кнопке xml: style="@style/Widget.MaterialComponents.Button.UnelevatedButton"

Ответ 7

Использование этого в качестве фона для вашей кнопки может помочь, измените цвет на ваши потребности.

<?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>

Ответ 8

Ответ @Alt-Cat работает для меня!

R.attr.borderlessButtonStyle не содержит тени.

и документ кнопки отлично.

Также вы можете установить этот стиль на своей пользовательской кнопке во втором конструкторе.

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

Ответ 9

Все приведенные выше ответы хороши, но я предложу другой вариант:

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


Ответ 10

Вместо кнопки вы можете использовать TextView и добавить прослушиватель кликов в java-код.

т.е.

в макете действий 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
            }
        });

Ответ 11

android:theme="@android:style/Theme.NoTitleBar"

Добавление этого к вашей деятельности также может помочь вам.