0

this is my code,

String str = ""; // this my dynamic font code 

ref url is How to use icons and symbols from "Font Awesome" on Native Android Application

Community
  • 1
  • 1
Shanmugavel GK
  • 350
  • 2
  • 11

2 Answers2

1

You could try this library on GitHub that allows you to easily create a drawable from the FontAwesome icons.

Tino
  • 419
  • 1
  • 4
  • 17
0

I know its very late, use unicode like

textawesome.setText(new String(Character.toChars(Integer.parseInt(
            "e013".getIcon_unicode(), 16))));
Meraj Ali
  • 11
  • 2