Bootstrap图标未显示(Xamarin WebView)

时间:2016-02-12 13:27:46

标签: ios twitter-bootstrap webview xamarin xamarin.ios

我试图在Xamarin WebView(单声道触摸)中加载html页面,同时尝试显示Bootstrap中的图标,当在Safari浏览器中加载html页面时显示正常但图标在加载到WebView中。

我的问题是,如何在WebView中显示引导程序图标?

在Safari中: enter image description here

在WebView中: enter image description here

代码:

<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>

我已经检查过,所有内容都被正确引用。

1 个答案:

答案 0 :(得分:0)

可以通过添加glyphicon-nonescaped

来解决

您的新代码将是:

<i class="glyphicon glyphicon-map-marker glyphicon-nonescaped"></i>