Android从FloatActionbutton移除边框悬停

时间:2019-06-24 21:38:54

标签: android android-layout android-button floating-action-button

current situation

因此,您可以在图片上看到我的按钮边框上有阴影。有没有一种方法可以消除阴影,使按钮的颜色与我的操作栏的颜色相对应。正确知道它看起来很丑,因为您可以看到阴影。这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>

<TableRow
    android:gravity="end">


    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/logInButton"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:borderWidth="0dp"
        app:backgroundTint="@color/faviconColor"
        app:srcCompat="@drawable/ic_person_black_24dp" />

</TableRow>

</TableLayout>

1 个答案:

答案 0 :(得分:0)

尝试将android:elevation="0dp"设置为浮动按钮。

尽管如此,为什么还要使用FloatingActionButton而不是普通按钮呢? FloatingActionButtons不适合像这样使用,如果需要,例如圆形波纹效果,还有更优雅的方法。

编辑: 如果这不起作用(有时),请改用app:elevation="0dp"