gpt4 book ai didi

Lollipop 前设备上的 Android setBackgroundTintList

转载 作者:IT老高 更新时间:2023-10-28 23:29:14 29 4
gpt4 key购买 nike

我正在使用 FloatingActionButton。用户应该能够在 onClick 事件中切换 FAB 背景颜色。

但是,对 setBackgroundTintList 的推荐调用似乎只兼容 21+ API。

我如何正确地在 Lollipop 之前的设备上进行操作?有什么替代品我可以使用吗?

提前致谢。

最佳答案

您也可以使用setSupportBackgroundTintList

Applies a tint to the background drawable. Does not modify the current tint mode, which is SRC_IN by default.

Subsequent calls to View.setBackground(Drawable) will automatically mutate the drawable and apply the specified tint and tint mode.

还可以查看 ViewCompat.setBackgroundTintList()

Applies a tint to the background drawable.

This will always take effect when running on API v21 or newer. When running on platforms previous to API v21, it will only take effect if view implement the TintableBackgroundView interface.

我找到了解决方案 here on SO我以前用过,是这样的:

public static void setButtonTint(Button button, ColorStateList tint) {
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP && button instanceof AppCompatButton) {
((AppCompatButton) button).setSupportBackgroundTintList(tint);
} else {
ViewCompat.setBackgroundTintList(button, tint);
}
}

它对我有用,我希望它也对你有用。

关于 Lollipop 前设备上的 Android setBackgroundTintList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33638873/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com