0

我正在使用以下功能:

var b4 = Titanium.UI.createButton({
title : '',
top : 360,
width : 190,
height : 20,
backgroundImage : '../images/signup.gif',
});

win.add(b4);

当我部署到 iphone 时,上面的按钮看起来是扭曲的(仅显示注册按钮的下部)。现在确定该怎么做......我该如何解决这个问题?

4

1 回答 1

0

您可能希望将您的按钮改为视图,即

var button = Ti.UI.createView({
    top: 360,
    width: 190,
    height: 20,
    backgroundColor: '#777777'
})


button.add(Ti.UI.createImageView({
    top: 10,
    bottom: 10,
    image: '../images/signup.gif'
}))

win.add(button);
于 2012-09-22T07:11:43.997 回答