我正在Appcelerator工作室工作。我想在标签text.how中添加html标签。我可以在标签中添加它。
var labThesisDetail = Titanium.UI.WebView({
text : "<p><strong>Master Of Science in Land Resource Management</strong></p> <p> </p>",
width : Ti.UI.FILL,
height : Ti.UI.SIZE,
right : 20,
top : 20,
editable : false,
backgroundColor : 'white',
left : 20,
color : "black",
font : {
fontSize : 13,
//fontFamily : "Signika-Regular",
fontWeight : 'normal'
}
});
viewCourseSummary.add(labThesisDetail);
答案 0 :(得分:0)
Android
只有html
属性才能执行此操作:http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.Label-property-html
我想要跨平台代码,您可以使用此模块:http://gitt.io/component/ti.styledlabel(它比使用WebView
更轻)
var StyledLabel = require('ti.styledlabel');
var label = StyledLabel.createLabel({
height: Ti.UI.SIZE || 'auto',
top: 5, right: 5, bottom: 5, left: 5,
html: '<center>Loading, please wait.</center>'
});