blazsolar/HorizontalPicker

Text Typeface

Closed this issue · 1 comments

Nice library!

Any way to change the typeface of the picker?

Thanks.

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();
    }
}