我想更改 textview 的字体,并按照教程和示例中给出的代码进行操作。但我遇到了错误。
我的代码是

var txt = FindViewById<TextView> (Resource.Id.textView1);
        Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/k010.ttf");
        txt.SetTypeface (tf, TypefaceStyle.Normal);

我在第二行出现错误,错误说



我想在我的文本 View 中使用 kruti dev 10 字体。

最佳答案

改变

Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/k010.ttf");


Typeface tf = Typeface.CreateFromAsset (Application.Context.Assets, "fonts/k010.ttf");

关于c# - 在 xamarin for android 中更改字体时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20437882/

10-10 06:56