Titanium 在哪里可以找到为Tianium应用程序构建自定义ui的好资源

Titanium 在哪里可以找到为Tianium应用程序构建自定义ui的好资源,titanium,Titanium,我在哪里可以找到为triplingo app等钛合金应用程序构建定制ui的好资源?如果您想要定制ui,显然需要聘请精通Photoshop、Illustrator或任何图形程序的设计师 如果您正在寻找代码来设计上述应用程序,那么只需查看文档,特别是Tianium中每个视图的backgroundImage属性 例如,要设置自定义按钮的样式,请执行以下操作: var more_btn = Ti.UI.createButton({ backgroundImage : 'More-1.png',

我在哪里可以找到为triplingo app等钛合金应用程序构建定制ui的好资源?如果您想要定制ui,显然需要聘请精通Photoshop、Illustrator或任何图形程序的设计师

如果您正在寻找代码来设计上述应用程序,那么只需查看文档,特别是Tianium中每个视图的
backgroundImage
属性

例如,要设置自定义按钮的样式,请执行以下操作:

var more_btn = Ti.UI.createButton({
    backgroundImage : 'More-1.png', // Custom UI
    backgroundFocusedImage : 'More-2.png', // Custom UI when clicked
    top : 271,
    left : 173,
    width : 135,
    height : 40
});

Appcelerator为自定义UI开发提供了两个教程:

  • 我建议您观看锻造钛系列视频,了解更先进的技术