Hi All,
I applied custom font to an TextView, but it doesn't seems to change the typeface.
Here is my code:-
Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/myFont.ttf");
TextView myTextView = (TextView)findViewById(R.id.myTextView);
myTextView.setTypeface(mTypeface);
So anyone can plz get me out of this issue?
Thanks..