如何在Titanium.UI.CreateButtonBar上添加图像作为标签?

时间:2013-01-20 22:54:39

标签: javascript titanium-mobile titanium-modules

这是我的代码,我想用图像替换“开始”“暂停”和“停止”

var controlBar = Titanium.UI.createButtonBar({
        labels: ['START','PAUSE','STOP'],
         style: Titanium.UI.iPhone.SystemButtonStyle.BAR,
         backgroundColor: '#000080',
         top:10,
         width:200,
         height:40

      });

1 个答案:

答案 0 :(得分:1)

labels属性也可以是BarItemType的数组

var controlBar = Titanium.UI.createButtonBar({
    labels: ['START','PAUSE', {
        image : '/path/to/image',
        title : 'Title',
        enabled : true
    }],
    style: Titanium.UI.iPhone.SystemButtonStyle.BAR,
    backgroundColor: '#000080',
    top:10,
    width:200,
    height:40
});