作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!