在Xamarin C的android项目中包含外部字体ttf#

时间:2014-12-02 10:37:03

标签: xamarin

我正在使用C#.NET中的Xamarin Studio开发一个Android应用程序。我必须在应用程序中使用外部字体(TTF)文件。我已将此ttf文件复制到Assets文件夹中。现在,如何通过axml或代码在app中使用它?

这是一个Xamarin.Android应用程序。

请帮忙。

1 个答案:

答案 0 :(得分:3)

像这样:

var typeface = Typeface.CreateFromAsset (context.Assets, fileName);

filename是您字体的名称,例如Roboto-Light.ttfcontext就是您的Context