Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发我想在其中...
我试图在 android 网站上找到解决方案,但没有任何方法可以做到这一点。
所以,我的问题是
是否可以将 css 文件应用于动态下载的 android 布局,或者是否可以使用字符串设置为 android 布局的样式或主题。
不,不!
CSS 用于网页设计,而 Android 则完全不同。
字符串不能转换为样式,样式必须在项目中构建为 XML 文件并与应用程序一起编译。要更改主题,您可以在每个活动setTheme(int)期间调用方法。onCreate
setTheme(int)
onCreate
编辑:
从活动:
getApplication().setTheme(int);