Closed borjaruiz closed 8 years ago
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();
}
}
Nice library!
Any way to change the typeface of the picker?
Thanks.