钛在本地xml上显示图像

时间:2013-06-28 07:14:11

标签: titanium titanium-mobile

我正在存储图像的完整路径&在下面检索它,我想知道为什么这个图像文件路径,不在xml的imageview中显示?     文件://localhost/Users/rhez/Library/Application%20Support/iPhone%20Simulator/6.1/Applications/76BDE731-037A-43F8-997B-DAFCA6E0D509/Documents/1372402304473-ea.jpg

<TableView dataCollection="photos">
<TableViewRow id="row" dataId="" model="{id}">
<View id="holderview">
<ImageView id="imageview" url="{path}"></ImageView>
</View>
</TableViewRow>
</TableView>

然而,当我在查找应用程序项目文档的查找器中查看时,图像存储在那里。在我的xml上显示/检索有什么问题吗?谢谢你所有的帮助。

1 个答案:

答案 0 :(得分:0)

尝试设置image属性,而不是url,不推荐使用url。

<TableView dataCollection="photos">
    <TableViewRow id="row" dataId="" model="{id}">
        <View id="holderview">
            <ImageView id="imageview" image="{path}"></ImageView>
        </View>
    </TableViewRow>
</TableView>