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

时间:2012-07-30 11:52:30

标签: titanium

我在哪里可以找到很好的资源来构建像triplingo app这样的钛应用的自定义ui

2 个答案:

答案 0 :(得分:2)

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

  1. Custom UI Components
  2. Building an Advanced Transaction UI with Titanium
  3. 我建议您观看锻造钛金属视频系列以获得更高级的技术HERE

答案 1 :(得分:1)

如果您正在寻找自定义用户界面,显然,您需要聘请一位精通Photoshop,Illustrator或任何图形程序的设计师。

如果您正在寻找代码来设置应用程序的样式,那么请查看文档,特别是钛中每个视图的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
});