【发布时间】:2020-06-04 16:12:10
【问题描述】:
很容易在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? }
谢谢。
【问题讨论】: