海拔高度浮动按钮不起作用

时间:2019-04-13 13:11:26

标签: android material-components material-components-android

我正在使用材料组件FloatingActionButton https://material.io/develop/android/components/floating-action-button/

在那种情况下,我无法使用以下代码为我的晶圆厂添加高程,但它无法正常工作 app:elevation="12dp" app:borderWidth="0dp"

这是我的xml。

<com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/mfab"
        style="@style/Widget.MaterialComponents.FloatingActionButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/mainlay"
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="16dp"
        android:layout_marginBottom="-28dp"
        app:elevation="12dp"
        app:borderWidth="0dp"
        app:fabSize="normal"
        app:srcCompat="@drawable/ic_directions_walk_white_18dp" />

2 个答案:

答案 0 :(得分:0)

AFAIK晶圆厂将覆盖高程值。因此,有两种可能的解决方案: 1.您获得fab的源代码并更改仰角值 2.您创建自己的实现。 我建议您使用第一个解决方案。

答案 1 :(得分:0)

您是否尝试过定义具有所需高度的,从Widget.MaterialComponents.FloatingActionButton继承的自定义样式,并在FAB实例上设置自定义样式?