gpt4 book ai didi

html - 如何根据用户偏好在 webview 上实现 html 的动态样式

转载 作者:行者123 更新时间:2023-11-28 00:12:06 25 4
gpt4 key购买 nike

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com