Hi,
I am struggling to get Font Awesome working on devices with Android 7 and downwards
a customer of mine complained that his backup tablet with Android 7 does not show the 'correct' icons, just a crossed out rectangle, same APK does run on his main device (Android 10)
I was able to reproduce the behaviour on Android 7. Loading the font does also not help, the correct icon is not displayed
I must do something wrong but I can't figure it out .....
I am struggling to get Font Awesome working on devices with Android 7 and downwards
a customer of mine complained that his backup tablet with Android 7 does not show the 'correct' icons, just a crossed out rectangle, same APK does run on his main device (Android 10)
I was able to reproduce the behaviour on Android 7. Loading the font does also not help, the correct icon is not displayed
B4X:
Private mTf As Typeface
mTf = Typeface.LoadFromAssets("fontawesome-webfont.ttf")
'mi = B4XPages.AddMenuItem(Me, cs.Initialize.Typeface(Typeface.FONTAWESOME).Size(20).Append(Constants.EditChar).PopAll)
mi = B4XPages.AddMenuItem(Me, cs.Initialize.Typeface(Typeface.FONTAWESOME).Typeface(mTf).Size(20).Append(Constants.EditChar).PopAll)
I must do something wrong but I can't figure it out .....