I wanted to use FontAwesome like this..
'Initialize the Typeface.
Dim myFont AsTypeface
myFont = Typeface.LoadFromAssets("fontawesome.otf")
'Add the FontAwesome typeface to your view.
Label1.Typeface = myFont
'Select the icon you want to display
Label1.Text = Chr(61481)
Is this possible with B4i to do something like that?