这是我的xml,升级不适用于以前的棒棒糖设备。
我测试了nexus 5和6的新设备。
但在运行工具包kat的旧设备上不起作用。
非常感谢您的帮助和富有成效的信息。
发布于 2016-09-15 12:17:32
只需设置app:borderWidth="0dp"就可以为我解决这个问题。
注意:不要忘记在根布局中添加xmlns:app="http://schemas.android.com/apk/res-auto"。
它为我工作
<android.support.design.widget.FloatingActionButton
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/your_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="@dimen/floating_button_margin_bottom"
android:layout_marginRight="@dimen/floating_button_margin_right"
app:elevation="@dimen/floating_button_elevation"
app:borderWidth="0dp"
app:rippleColor="@color/your_ripple_color"
app:backgroundTint="@color/your_bg_color" />https://stackoverflow.com/questions/39510768
复制相似问题