android – 如何清除FloatingActionButton的周围阴影?

前端之家收集整理的这篇文章主要介绍了android – 如何清除FloatingActionButton的周围阴影?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用图书馆com. android.support:design:22.2.0打包的 the native one替换第三方 FloatingActionButton.默认的外观在图像周围有一个黑暗的阴影,我该如何摆脱它?我知道前一个提供了setShadow()的方法,但是我从后者找不到类似的一个.

这是相关的XML布局:

<android.support.design.widget.FloatingActionButton
        android:id="@+id/alarm_front"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/btn_icon_alarm_notset" />

而且我将背景颜色设置为黄色.

mAlarmBtn.setBackgroundTintList(ColorStateList.valueOf(getResources().getColor(R.color.floatButtonColor)));

解决方法

通过添加:覆盖FAB的默认值 elevation
android:elevation="0dp"

或在代码调用View.setElevation(float)

原文链接:https://www.f2er.com/android/313056.html

猜你在找的Android相关文章