0

I'm using action bar with custom view for title to be able to add Title and Subtitle

I need to set Title Style to Bold, When I make it in the XML layout it works fine, but I need to set it from code using

textView.setTypeface(null, Typeface.BOLD);

but it does not work, can anyone please help

Zain
  • 37,492
  • 7
  • 60
  • 84
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175

2 Answers2

1

Ideally it should work. This may sound mundane but can you check if it gets reset somewhere after you set it to bold the first time in your Java file.

Ahmed Faisal
  • 4,397
  • 12
  • 45
  • 74
0

You can use this code to display HTML codes in textviews

textView.setText(Html.fromHtml("<b>BOLD WORDS HERE</b>"));
NaviRamyle
  • 3,967
  • 1
  • 31
  • 49