gpt4 book ai didi

java - 如何以编程方式获取 Material3 原色/强调色?

转载 作者:行者123 更新时间:2023-12-02 18:17:37 25 4
gpt4 key购买 nike

Google 推出了 Material 3,它允许用户选择一种颜色来应用整个系统主题,但他们的文档并不清楚,也没有提到如何以编程方式获取当前颜色以用于应用程序,例如更改 View 的背景颜色或文本颜色。

例如:view.setBackgroundColor(Material3.getPrimaryColor());

当然 Material3.getPrimaryColor() 不存在,它只是我需要的一个例子。

感谢任何帮助,谢谢。

最佳答案

首先 - 请记住,Android 12 (API 31) 中添加了对动态主题的支持,但并非所有制造商都支持它,更不用说低版本的兼容性实现了。

这是关于如何 use dynamic colors 的文档一般来说,包括主题叠加和 Activity 颜色叠加。

如果你想创建主题 View ,使用适当的 DynamicColor 主题或至少包装上下文来膨胀它们并让它们相应地风格化会更容易。

要获得特定的颜色,您需要使用最后一步 - 使用 DynamicColors 主题包装上下文:

if (DynamicColors.isDynamicColorAvailable()) {
// if your base context is already using Material3 theme you can omit R.style argument
Context dynamicColorContext = DynamicColors.wrapContextIfAvailable(context, R.style.ThemeOverlay_Material3_DynamicColors_DayNight);
// define attributes to resolve in an array
int[] attrsToResolve = {
R.attr.colorPrimary, // 0
R.attr.colorOnPrimary, // 1
R.attr.colorSecondary, // 2
R.attr.colorAccent // 3
};
// now resolve them
TypedArray ta = dynamicColorContext.obtainStyledAttributes(attrsToResolve);
int primary = ta.getColor(0, 0);
int onPrimary = ta.getColor(1, 0);
int secondary = ta.getColor(2, 0);
int accent = ta.getColor(3, 0);
ta.recycle(); // recycle TypedArray

// here you can consume dynamic colors
}

关于java - 如何以编程方式获取 Material3 原色/强调色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71374425/

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