blazsolar / HorizontalPicker

Android widget allowing user to select one item from set of them by swiping left and right.
http://blaz.solar/HorizontalPicker
Apache License 2.0
228 stars 81 forks source link

Text Typeface #42

Closed borjaruiz closed 8 years ago

borjaruiz commented 8 years ago

Nice library!

Any way to change the typeface of the picker?

Thanks.

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