use of android.graphics.Typeface in project letterpress by Pixplicity.
the class FontAppCompatCheckBox method setCustomTypeface.
private void setCustomTypeface(AttributeSet attrs, int defStyle) {
final Typeface tf = FontUtil.getTypeface(getContext(), attrs, defStyle);
setCustomTypeface(tf);
}
use of android.graphics.Typeface in project letterpress by Pixplicity.
the class FontAppCompatCheckedTextView method setCustomTypeface.
public void setCustomTypeface(String font) {
final Typeface tf = FontUtil.getTypeface(getContext(), font);
setCustomTypeface(tf);
}
use of android.graphics.Typeface in project letterpress by Pixplicity.
the class FontAppCompatCheckedTextView method setCustomTypeface.
private void setCustomTypeface(AttributeSet attrs, int defStyle) {
final Typeface tf = FontUtil.getTypeface(getContext(), attrs, defStyle);
setCustomTypeface(tf);
}
use of android.graphics.Typeface in project letterpress by Pixplicity.
the class FontAppCompatEditText method setCustomTypeface.
private void setCustomTypeface(AttributeSet attrs, int defStyle) {
final Typeface tf = FontUtil.getTypeface(getContext(), attrs, defStyle);
setCustomTypeface(tf);
}
use of android.graphics.Typeface in project letterpress by Pixplicity.
the class FontAppCompatMultiAutoCompleteTextView method setCustomTypeface.
private void setCustomTypeface(AttributeSet attrs, int defStyle) {
final Typeface tf = FontUtil.getTypeface(getContext(), attrs, defStyle);
setCustomTypeface(tf);
}
Aggregations