문제

I want to change font of my textview and I follow the code given in tutorials and samples. But I am getting error in it. my code is

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

I am getting error in 2nd line the error says

The object refrance is required for non static field,method

I want to use kruti dev 10 font in my textview.

도움이 되었습니까?

해결책

Change

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

to

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

다른 팁

please change

Typeface tf = Typeface.CreateFromAsset (getApplicationContext().getAssets(), "fonts/k010.ttf");

to

Typeface tf = Typeface.CreateFromAsset (this.getAssets(), "fonts/k010.ttf");

please refer below link for better solution regarding this.

https://github.com/xamarin/monodroid-samples/blob/master/ApiDemo/Graphics/Typefaces.cs

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top