我想在我的Xamarin项目中使用来自metro字体(http://metroui.org.ua/font.html)的一些图标,我找不到将字符私有用于我的字符串的解决方案,它总是被一个正方形取代内部?
。
如果有人知道如何设置特殊角色,它可以帮助我!
答案 0 :(得分:1)
您需要在Android中使用自定义渲染器。其余应该开箱即用。 This example使用FontAwesome,但也应该与你的一起使用。
首先,请确保以正确的方式包含您的字体。
如果是Android,您需要将字体放入Assets文件夹并将其标记为BundleAsset
。
如果iOS将其复制到Resources文件夹并将其标记为BundleResource
并将其设置为“始终复制”。最后编辑 info.plist 并添加
<key>UIAppFonts</key>
<array>
<string>FontAwesome.ttf</string>
</array>
然后,Android的自定义渲染器将如下所示:
[assembly: ExportRenderer(typeof(FontAwesomeIcon), typeof(FontAwesomeIconRenderer))]
namespace AAA.Android.Renderers
{
/// <summary>
/// Add the FontAwesome.ttf to the Assets folder and mark as "Android Asset"
/// </summary>
public class FontAwesomeIconRenderer: LabelRenderer
{
protected override void OnElementChanged(ElementChangedEventArgs<Label> e)
{
base.OnElementChanged(e);
if (e.OldElement == null)
{
//The ttf in /Assets is CaseSensitive, so name it FontAwesome.ttf
Control.Typeface = Typeface.CreateFromAsset(Forms.Context.Assets, FontAwesomeIcon.Typeface + ".ttf");
}
}
}
}
这是一个自定义的Label实现:
namespace AAA.Common.Views.Shared.FontAwesome
{
public class FontAwesomeIcon : Label
{
//Must match the exact "Name" of the font which you can get by double clicking the TTF in Windows
public const string Typeface = "FontAwesome";
public FontAwesomeIcon(string fontAwesomeIcon=null)
{
FontFamily = Typeface; //iOS is happy with this, Android needs a renderer to add ".ttf"
Text = fontAwesomeIcon;
}
/// <summary>
/// Get more icons from http://fortawesome.github.io/Font-Awesome/cheatsheet/
/// Tip: Just copy and past the icon picture here to get the icon
/// </summary>
public static class Icon
{
public static readonly string Gear = "";
public static readonly string Globe = "";
}
}
}
在静态类Icon
中,您可以添加要使用的图标。
另外here你可以找到一个ascii代码列表,而不是奇怪的问号图标。