'https://www.b4x.com/android/forum/threads/fontawesome-to-bitmap.95155/#post-603250
Dim bmp As B4XBitmap = SetFontToBitmap(Chr(0xF085), xui.CreateFontAwesome(32), xui.Color_Blue)
Button1.Text = "TYPE Button with FontAwesome"
SetImageToView(Button1, bmp, "LEFT")
Dim bmp As B4XBitmap = SetFontToBitmap(Chr(0xE438), xui.CreateMaterialIcons(32), xui.Color_Red)
Label5.Text = "Type Label with MaterialIcons"
SetImageToView(Label5, bmp, "LEFT")
Dim bmp As B4XBitmap = xui.LoadBitmapResize(File.DirAssets, "icon.png", 32, 32, True)
Button2.Text = "Type Button with Image"
SetImageToView(Button2, bmp, "LEFT")
Dim bmp As B4XBitmap = xui.LoadBitmapResize(File.DirAssets, "icon.png", 32, 32, True)
Label6.Text = "Type Label with Image"
SetImageToView(Label6, bmp, "LEFT")