Hello,
I just had a look at the Android code. It looks like native.systemFontBold is ignored and it just defaults to native.systemFont instead. It looks like the Corona Simulator for Windows has the same problem. I’ll write this up as a bug to be fixed later.
In the meantime, you can work-around this issue by setting the font explicitly. My understanding is that all Android devices come with the following bold font:
[lua] “DroidSans-Bold”[/lua]
So, you’ll want to do something like this in your code…
[lua]local font
if “Android” == system.getInfo(“platformName”) then
font = “DroidSans-Bold”
else
font = native.systemFontBold
end
display.newText(“Hello World!”, 0, 0, font, 16)[/lua]
[import]uid: 32256 topic_id: 22953 reply_id: 92007[/import]