字体很棒的图标在Xamarin.Forms中对我不起作用。这是我的Label
xaml
<Label TextColor="Red" FontFamily="FontAwesomeBrands" FontSize="Large" Text=""
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,
Property=Width,Factor=1}">
</Label>
我已将这些文件添加到android项目的Assests
文件夹中
输出仅显示空符号。我该如何运作?
答案 0 :(得分:1)
答案 1 :(得分:1)
我使用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"/>