我在更改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"/>

gradt中的设计支持库
compile 'com.android.support:design:23.0.0'

版本的屏幕快照GingerBread KitKat

注意:我在GingerBread设备上得到了我的要求的准确输出。仅GingerBread会出现问题。

android -  Gingerbread 版本设备中的backgroundTint的FAB颜色未更改-LMLPHP

最佳答案

可能有效

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);
    }

10-06 11:17