本文介绍了字体真棒图标未出现在Xamarin.Forms中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

字体很棒的图标在Xamarin.Forms中对我不起作用.这是我的Label xaml

Font awesome icons are not working for me in Xamarin.Forms. This is my Label xaml

<Label TextColor="Red" FontFamily="FontAwesomeBrands"  FontSize="Large" Text="&#xf122;"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,
Property=Width,Factor=1}">
</Label>

我已将这些文件添加到android项目的Assests文件夹中

I have added these file in Assests folder of android project

输出仅显示空符号.我该如何运作?

推荐答案

我使用Xam.FormsPlugin.Iconize和Xam.Plugin.Iconize NuGet图标包:

I use Xam.FormsPlugin.Iconize and Xam.Plugin.Iconize NuGet packages for icons:

xmlns:iconize="clr-namespace:FormsPlugin.Iconize;assembly=FormsPlugin.Iconize"

<iconize:IconLabel Text="fa-question-circle" FontSize="Medium" TextColor="#666666" HorizontalTextAlignment="End"/>

这篇关于字体真棒图标未出现在Xamarin.Forms中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 10:12