how to change font family of Tabhost in android -


i want change font family default font family. it's possible? please me

thank you.

enter image description here

add font files(.ttf,.ttc,.otf etc ) in assets folder
set fonts programatically:

textview tv= (textview)findviewbyid(r.id.custom); typeface face=typeface.createfromasset(getassets(), "fonts/heartbre.ttf"); tv.settypeface(face); 

Comments

Popular posts from this blog

android - Gradle sync Error:Configuration with name 'default' not found -

java - Andrioid studio start fail: Fatal error initializing 'null' -

html - jQuery UI Sortable - Remove placeholder after item is dropped -