Given a Button
created at runtime:
Button button = Button(context)
The way to set a custom typeface is:
button.setTypeface(myTypeface)
However I find it only works before I add it to a ViewGroup
and not after.
I've also tried:
button.setTypeface(myTypeface, myStyle)
but it didn't work either. I need to change my Button
font dynamically. I've tried invalidate()
and requestLayout()
but the font never changes.
Solution:- you can subclass the Button class with your custom font and use it instead of button.