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

查看:20
本文介绍了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 属性.您应该使用 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);

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

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