无法在表格视图中显示远程图像 - appcelerator

时间:2012-03-27 09:08:37

标签: android iphone appcelerator

我正在创建一个带有图像视图的表格行,并且该图像视图图像将来自远程网址。

var pic =  Titanium.UI.createImageView({
        image:photoUrl,
        width:32,
        height:32,
        left:4,
        top:2
    });

这里photoUrl就像“https://xxx.xx.x.com/profilephoto/72990000000D6Wd/T” 在Android上它没有显示任何东西,在iPhone上显示一些默认图像。我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

问题解决了。

image url" https://xxx.xx.x.com/profilephoto/72990000000D6Wd/T"正在重定向到登录屏幕。它在浏览器上工作正常,因为我已经登录但是它没有在移动应用程序上工作,因为会话ID不存在。

所以我修改了网址,如https://xxx.xx.x.com/profilephoto/72990000000D6Wd/T?oauth_token= [token]

现在工作正常。