SmartTabLayout
SmartTabLayout copied to clipboard
Font Icon For Tabs
how can I use a font icon or any other custom font for tabs? i have created the custom font class and I'am using it in other parts of my app i have changed the createDefaultTabView return type to my own custom font class in smartTabLayout class but it didn't work.
protected CustomFontIcon createDefaultTabView(CharSequence title) {
CustomFontIcon textView = new CustomFontIcon(getContext());
textView.setGravity(Gravity.CENTER);
.
.
.
any suggestion?