作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Android Studio ... 我会根据用户选择的主题链接更改多个 html 文件中的 html 标题 (h1 h2 h3 h4) 颜色,我将所有 html 文件链接到一个 css 文件,我正在寻找一种根据用户偏好动态更改 css 中标题文本颜色(因此在所有 html 文件中)的方法。
//css
h2 {
color: #008577;
font-size: 22px;
text-align: justify;
}
//html
<head>
<link rel="stylesheet" href="file:///android_asset/stylesheet.css" />
</head>
//xml
<style name="AppTheme1" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary1</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark1</item>
<item name="colorAccent">@color/colorAccent1</item>
<item name="backgroundcolor">@color/colorWhite</item>
<item name="titletextcolor">@color/colorPrimary1</item>
<item name="textcolor">@color/colorBlack</item>
</style>
是否可以将 css 链接到 xml?而不是颜色:#008577; ... 颜色:“?attr/colorPrimary”
最佳答案
解决方案比我想象的要简单..
将样式放在 SCC
文件中,解决问题
@media only screen and (max-width: 600px) {}
@media only screen and (min-width: 600px) {}
关于html - 如何根据用户偏好在 webview 上实现 html 的动态样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55332868/
我是一名优秀的程序员,十分优秀!