[Solved] the error occurs when I use custom textview in the android studio
Try this following code for custom textview import android.content.Context; import android.graphics.Canvas; import android.graphics.Typeface; import android.util.AttributeSet; import android.widget.TextView; public class FontTextView extends TextView { public FontTextView(Context context) { super(context); Typeface face=Typeface.createFromAsset(context.getAssets(), “Helvetica_Neue.ttf”); this.setTypeface(face); } public FontTextView(Context context, AttributeSet attrs) { super(context, attrs); Typeface face=Typeface.createFromAsset(context.getAssets(), “Helvetica_Neue.ttf”); this.setTypeface(face); } public FontTextView(Context context, AttributeSet attrs, int defStyle) { super(context, … Read more