Android:尽管borderWidth为0,但支持FAB不显示阴影

时间:2016-03-09 15:39:21

标签: android android-support-library floating-action-button android-support-design

我有一个浮动操作按钮,我已从支持库中添加,但没有阴影。我的xml:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/rootLayout"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:clipToPadding="false"
    android:background="@android:color/white"
    >

<android.support.design.widget.FloatingActionButton
        android:id="@+id/myFab"
        android:layout_width="50dp"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp"
        app:borderWidth="0dp"
        app:elevation="10dp"
        app:rippleColor="@android:color/white"
        app:fabSize="normal"
        app:pressedTranslationZ="12dp"
        app:backgroundTint="@color/blue"
        />

</RelativeLayout>

这是什么问题?我已经尝试将clipToPadding设置为false并将borderWidth设置为0 - 既没有帮助。

编辑:添加了屏幕截图示例:

enter image description here

0 个答案:

没有答案