某些用户将其android系统字体从默认更改为其他。我想在webview中也使用新的系统字体。但是现在所有应用程序都使用新的字体,但是webview使用默认的字体。如何获得和使用系统字体?
我知道如何从自定义文件中包含fony-face,但是我想使用每个用户都不同的系统字体。
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
<article id="{{ this_word }}">
<h2 class="tag-heading tag-name">{{ this_word }}</h2>
<ul>
{% for post in site.tags[this_word] %}{% if post.title != null %}
<li><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}" >{{ post.date | date: '%m/%d/%Y' }} ---- {{ post.title }}</a></li>
{% endif %}{% endfor %}
</ul>
</article>
{% endunless %}{% endfor %}
如果我没有设置任何字体,则webview使用默认字体,而不使用系统。我想使用系统字体。