medyo / Fancybuttons

Icons, Borders, Radius ... for Android buttons
1.77k stars 397 forks source link

fancy:fb_text #39

Closed LinkOut closed 8 years ago

LinkOut commented 8 years ago

Hellow, nice lin

Is there a way to set fancy:fb_text bold?

medyo commented 8 years ago

Hi @LinkOut, the current version doesn't support textStyle bold, italic ... However, you can easily set it programmatically by doing :

FancyButton myButton = (FancyButton)findViewById(R.id.my_button);
myButton.getTextViewObject().setTypeface(null, Typeface.BOLD);
LinkOut commented 8 years ago

Awesome, thanks a lot!