0
錯誤說「這個名字‘字體’並不在當前的背景下存在」如何在Xamarin.Android中使用自定義字體?字體問題
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
TextView title = FindViewById<TextView>(Resource.Id.title);
var font = Typeface.CreateFromAsset(Assets, "FluoGums.ttf");
title.Typeface = font;
}
}
添加使用條款:'使用Android.Graphics;'或完全限定它:'Android.Graphics.Typeface' – SushiHangover