Android Bootstrap By Bearded-hen Icons Fonts Not Showing
I just downloaded the sample from Android-Bootstrap, But all the fonts Icons are not displaying. I just downloaded the latest version, and still I am having the same problem. (I t
Solution 1:
fontawesome-webfont.ttf file download and copy to app/src/main/assets. In the OnCreate event of the application, add the following code.
TypefaceProvider.registerDefaultIconSets();
Solution 2:
The fontawesome icons will only display if fontawesome-webfont.ttf
is present in the assets folder of your app, so you need to copy the file there. In a typical Android studio project your assets folder can be found at app/src/main/assets
.
Post a Comment for "Android Bootstrap By Bearded-hen Icons Fonts Not Showing"