I am developing an application. I am using custom font. \".ttf\" file to customize font of text view. I used the code as:
Typeface tfArchitectsDaughter = Typ
You can use the below code to set your text as bold
create a seperate file as style.xml
And in your java file if you want the text to be bold after can action means
Typeface tfArchitectsDaughter = Typeface.createFromAsset(getAssets(), "fonts/ArchitectsDaughter.ttf");
textview.setTypeface(tfArchitectsDaughter);
myTextView.setTextAppearance(getApplicationContext(), R.style.boldText);