error in changing typeface in xamarin for android

android, c#, typeface, xamarin, xamarin.android

Solution

Change

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

to

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

Problem

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.

Original source