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
  • 360
  • 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
  • 539
  • 2
  • 6
  • 18
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