Titanium ImageView 不会显示图像?

人气:493 发布:2022-10-16 标签: imageview titanium uiimageview

问题描述

我在 UI 文件夹中的项目中创建了一个图像目录来放置我的图像.所以当前的完整路径是 Resources/UI/Images.当我创建图像视图时,它不会显示图像.我尝试了不同的选项,甚至是网络图像,但没有任何效果?

I created an image directory in my projects in the UI folder to place my images. So the full path is currently Resources/UI/Images. When i create an image view it wont display the images. I tried different options, even a web image but nothing works?

var self = Ti.UI.createView({
    backgroundColor:'white'
});

var imgv = Titanium.UI.createImageView({url:"http://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Volkswagen_Logo.png/600px-Volkswagen_Logo.png"});
self.add(imgv);

var imgv = Titanium.UI.createImageView({url:"../images/sb02.jpg"});
self.add(imgv);

var imgv = Titanium.UI.createImageView({url:"Resources/ui/images/sb03.jpg"});
self.add(imgv);

推荐答案

你的代码有错误.ImageView 控件没有 url 属性.您应该使用 image 属性.试试下面的代码

There is an error in your code. There is no url property for ImageView control. You should use image property. Try the following code

var imgv = Titanium.UI.createImageView({
                 image:"../images/sb02.jpg"
           });
self.add(imgv);

917