我试图在Xamarin WebView(单声道触摸)中加载html页面,同时尝试显示Bootstrap中的图标,当在Safari浏览器中加载html页面时显示正常但图标在加载到WebView中。
我的问题是,如何在WebView中显示引导程序图标?
代码:
<section>
<div class="input-group col-lg-2">
<span class="input-group-addon">
<i class="glyphicon glyphicon-map-marker"></i>
</span>
<input type="text" readonly class="form-control"/>
<span class="input-group-btn">
<button class="btn btn-default" type="button">GPS</button>
</span>
</div>
</section>
我已经检查过,所有内容都被正确引用。
答案 0 :(得分:0)
可以通过添加glyphicon-nonescaped
类
您的新代码将是:
<i class="glyphicon glyphicon-map-marker glyphicon-nonescaped"></i>