我正在使用编译’com.
android.support:design:23.1.1’和android.support.design.widget.FloatingActionButton来创建FAB.
当背景色调颜色为白色时,高程(阴影)非常明显.
但对于其他颜色,海拔不可见.
这是我的代码:
<android.support.design.widget.FloatingActionButton xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/create_floating_button" app:elevation="6dp" app:borderWidth="0dp" android:clickable="true" app:backgroundTint="@color/colorAccent" app:rippleColor="@color/colorAccentLight" android:layout_margin="10dp" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
除了这个问题,即使是白色,按钮也不像google material design spec中那样.
例如检查这个(阴影方向向下):
我究竟做错了什么?
解决方法
确保你有一个特定的layout-v21文件,用android:elevation替换app:elevation.在API 21之后,您需要这样做以保持良好的兼容性.