这是我的代码,我想用图像替换“开始”“暂停”和“停止”
var controlBar = Titanium.UI.createButtonBar({
labels: ['START','PAUSE','STOP'],
style: Titanium.UI.iPhone.SystemButtonStyle.BAR,
backgroundColor: '#000080',
top:10,
width:200,
height:40
});
答案 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
});