0

これは私のコードであり、「開始」、「一時停止」、「停止」を画像に置き換えたい

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

      });
4

1 に答える 1

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
});
于 2013-02-20T17:33:57.307 に答える