使用Titanium工作室;所以我在我的资源/字体文件夹,android / fonts文件夹,root / assets / fonts中都有这个字体;我不知道我的代码出了什么问题。 唯一的结论是字体根本不适用于android。 我的老师也找不到解决办法。
我一直在努力寻找,但却找不到任何有用的东西。
答案 0 :(得分:2)
fontSize
和fontFamily
属性需要放在font {}
对象中,例如
var titel = Ti.UI.createLabel({
text : "Hur låter..?",
color : "white",
textAlign : "center",
bottom : "85%",
font: {
fontSize : 45,
fontFamily : 'customFont'
}
});