Monodroid - 设置自定义字体

时间:2013-07-10 19:40:33

标签: c# android fonts xamarin.android typeface

我正在使用Monodroid制作应用,我无法弄清楚如何制作自定义字体。

以下是我的代码

TextView text = FindViewById<TextView>(Resource.Id.tvchange);
Typeface tf = Typeface.CreateFromAsset(Assets,"fonts/gt.otf");
text.SetTypeface(tf);

Monodroid中没有getAssets()所以我不知道字体是否正确,text.SetTypeface(tf); 期待两个争论,第二个我不知道。

由于

1 个答案:

答案 0 :(得分:0)

我发现了问题

以下是代码

 Typeface tf = Typeface.CreateFromAsset(Application.Context.Assets, "fonts/gt.otf");
 TextView ExplodeVin = FindViewById<TextView>(Resource.Id.tvExVin);
 ExplodeVin.SetTypeface(tf,TypefaceStyle.Normal);