Titanium ImageView不会显示图像? [英] Titanium ImageView wont display images?

查看:113
本文介绍了Titanium ImageView不会显示图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在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属性。您应该使用图像属性。请尝试以下代码

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);

这篇关于Titanium ImageView不会显示图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆