4
以下是我的代碼。它完美適用於iPhone,但圖像對於Android來說非常有用,所以它沒有顯示標籤。如何在Titanium中的按鈕上放置圖像和標籤?
var friendsButton = Titanium.UI.createButton({
top : 0,
left : 91,
width : 90,
height : 101,
style : 0,
backgroundImage : '/img/buttonMiddle.png',
image : '/img/friendcopy.png'
});
var friendLabel = Titanium.UI.createLabel({
top : 35,
left : 25,
width : 100,
height : 100,
text : 'Friend',
color : 'white',
font : {fontSize:12}
});
friendsButton.add(friendLabel);
請幫我這個。我是新來的鈦
這不是在我身邊工作,仍然是同樣的問題 – spaleja