背景的FAB颜色在Gingerbread版设备中没有变化

时间:2015-09-12 10:08:36

标签: android material-design android-2.3-gingerbread floating-action-button androiddesignsupport

我在改变FAB的xml中的backgroundTint颜色时遇到了一个问题,即没有为使用Gingerbread版本的设备分配颜色。我真的很困惑,不知道为什么它表现得很奇怪。我完全陷入了这个问题,几个小时触发了解决方案,但我无法做到。请帮助我提出解决问题的建议和建议。我发布了我的代码和问题的屏幕截图供您参考。提前谢谢。

include_fab.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|right"
    android:layout_marginBottom="20dp"
    android:layout_marginRight="20dp"
    app:backgroundTint="#FF0000"
    app:borderWidth="0dp"
    app:elevation="5dp"
    app:fabSize="normal"/>

在我的gradle中设计支持库

compile 'com.android.support:design:23.0.0'

版本截图 GingerBread KitKat

注意:我在GingerBread设备上方获得了我的要求的准确输出。单独使用GingerBread就会出现问题。

enter image description here

2 个答案:

答案 0 :(得分:2)

它可能有用

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        FloatingActionButton v = (FloatingActionButton) findViewById(R.id.fab);
        ColorStateList csl = new ColorStateList(new int[][]{new int[0]}, new int[]{0xffff0000});
        v.setSupportBackgroundTintList(csl);
    }

答案 1 :(得分:1)

这实际上是库中的一个错误。有一个开放的错误报告,您可以看到here