Text Typeface
Closed this issue · 1 comments
borjaruiz commented
Nice library!
Any way to change the typeface of the picker?
Thanks.
borjaruiz commented
Well, I overrided the method setTextSize and it works.
private void setTextSize(float size) {
if(size != textPaint.getTextSize()) {
textPaint.setTextSize(size);
textPaint.setTypeface(typo);
requestLayout();
invalidate();
}
}