Appcelerator App Designer 资产路径问题和 RGBA

Appcelerator App Designer assets path issue and RGBA

我对 Appcelerator App Designer 有疑问。 我在 app/assets/iphone/images/MainBG.png 之类的资产中有一个图像路径 在 xml 中,我需要使用像 /images/MainBG.png 这样的路径 但是 App Designer 设置了类似 /iphone/images/MainBG.png 的路径,当我 运行 我的应用程序时它不起作用...是的,我可以更改此路径,但之后我无法在 App Designer 视图中看到图像。

第二个问题: App Designer 无法使用 alpha...是的,我可以像 rgba(150,0,0,0.5) 一样手动设置 BGcolor 但在 App Designer 视图中我看不到结果。

谁能帮帮我? 对不起我的英语))

虽然我没有用过 App Designer,但以下内容可能对您有所帮助:

  • 将所有图像文件放入 app/assets/images 文件夹
  • 现在在 XML 中设置路径,如 image='/images/MainBG.png'

手动设置背景颜色,您可以使用以下组合:

  • 您可以使用 backgroundColor:"#fff"
  • 你也可以使用 backgroundColor:"#ffffff"
  • 这个也可以 backgroundColor:"white"
  • 这个适用于 alpha - backgroundColor:"#abcd",在此语法中,alpha 将为 'aa' & r/g/b 将是 bb/cc/dd.
  • 所以这个也适用于 alpha - backgroundColor:"#aabbccdd",每个 alpha/red/green/blue
  • 2 位数字