首页 > 解决方案 > 字体真棒图标未显示在 Xamarin.Forms

问题描述

在 Xamarin.Forms 中,字体真棒图标不适合我。这是我的Labelxml

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

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

在此处输入图像描述

输出只显示空符号。我怎样才能让它工作?

标签: xamlxamarinxamarin.formsfont-awesome

解决方案


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

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

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

推荐阅读