我们如何在Titanium iOS标签中添加Html标签

时间:2016-03-11 06:14:53

标签: html ios titanium

我正在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);

1 个答案:

答案 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>'
});