I want to change the font weight in TextView but i can’t find the required method.
How can i do it without creating a new font?
I want to change the font weight in TextView but i can’t find the required method.
How can i do it without creating a new font?
2
Answers
I have found the right answer. There is the static method:
For example, if you want the font weight to be 700:
You can only show a TextView as Light, Regular and Condensed if the font that you’re referencing allows those styles.
private TextView AB;
Typeface someFontName-condensed = Typeface.createFromAsset(getAssets(), "assets/NameOfFont-condensed.ttf");
AB = (TextView) findViewById(R.id.myTextViewId);
AB.setTypeface(someFontName-condensed);