作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
可以轻松更改 styles.xml 中的主题属性,以及在 attrs.xml 中定义新的自定义主题属性。
但是如何在java代码中做到这一点呢?
在Activity中调用setTheme后,如何以编程方式更改或定义属性?
TestActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Apply "AppTheme" to this Activity
super.setTheme(R.style.AppTheme);
// How to change theme attribute "colorPrimary" or "android.R.attr.colorPrimary" in here?
// How to define new custom theme attribute "customThemeAttribute" in here?
}
谢谢。
最佳答案
经过一些研究,没有办法以编程方式设置主题属性。
关于java - 如何在 Android 10 中以编程方式设置自定义主题属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62199311/
我是一名优秀的程序员,十分优秀!