我正在使用appcelerator构建一个简单的应用。 我想在视图上设置背景图像。
这是tss的代码
login.tss
".images":{
top: "15px",
left: "161px",
backgroundImage : "/images/logo_decipher.PNG",
width : "268px",
height : "213px"
}
这是 login.xml
<Alloy>
<View class="container">
<View class="images"></View>
<Label id="loginLable"
class="loginLable">Accedi</Label>
<TextField class="textLogin"></TextField>
<Button></Button>
</View>
</Alloy>
这是我的形象所在的文件夹:
如果我尝试启动我的应用程序,则图像不显示
答案 0 :(得分:0)
Titanium中的所有图片都必须位于app/assets
文件夹中。
在app/assets
文件夹中,您可以创建一个images
文件夹,然后您可以在其中添加图片。您已设置的路径将适用于该情况。
请注意所有图片都区分大小写。如果您的文件实际上是.PNG
,那么就这样保留。