plugins - Can i use font-awesome in android's edittext? -


i have added font-awesome .tff file assets folder, initlaized of icons in strings.xml file, changed typefaces of entities use font-awesome in , tried using font-awesome on buttons , worked, did same edittexts there strings of numbers instead of icon. idea can do?

ans: set string directly in xml like:
android:text="&#xf042"; , use typeface set in edittext ,like

typeface font_awesome =  typeface.createfromasset(getassets(),"fontawesome-webfont.ttf"); app_menutxt.settypeface(font_awesome); 

in programme : app_menutxt.settext("\uf042");


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -