如何使用appcelerator在app中插入图像

时间:2016-06-14 13:34:35

标签: appcelerator

我正在使用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>

这是我的形象所在的文件夹:

enter image description here

如果我尝试启动我的应用程序,则图像不显示

1 个答案:

答案 0 :(得分:0)

Titanium中的所有图片都必须位于app/assets文件夹中。

app/assets文件夹中,您可以创建一个images文件夹,然后您可以在其中添加图片。您已设置的路径将适用于该情况。

请注意所有图片都区分大小写。如果您的文件实际上是.PNG,那么就这样保留。