钛金属手机:在android问题按钮中显示图像

时间:2012-03-12 08:55:52

标签: titanium-mobile

我正在使用Titanium sdk 1.8.1开发一个应用程序,在这个应用程序中我只是创建带图像的按钮,但在android图像中不显示它的工作正常iPhone。对于Android我已经创建了文件夹高,低和中内部资源文件夹,所以请告诉我如何才能实现这一功能。

var isAndroid = false;
if (Titanium.Platform.name == 'android') 
{
    isAndroid = true;
}
var addFriendButton = Ti.UI.createButton
({
    font:
    {
        fontFamily:'Helvetica Neue',
        fontSize:'15dp'
    },
    top:'20dp',
    left:'235dp',
    height:'22dp',
    width:'110dp',
    isButton:true
});

if(isAndroid)
{
    addFriendButton.backgroundImage = '../images/addfriend.png';
}
else
{
    addFriendButton.backgroundImage = path + '/Images/addfriend.png';
}

提前致谢。

1 个答案:

答案 0 :(得分:1)

是的,我的问题只是替换我的代码:

if(Ti.Platform.osname == 'android')
{
    addFriendButton.image = '/Images/addfriend.png';
}
else
{
    addFriendButton.backgroundImage = path + '/Images/addfriend.png';
}