如何使用 Titanium 加载远程图像 Alloy
How to load remote images using Titanium Alloy
所以我一直在尝试使用 titanium 加载远程图像,这是我正在使用的片段,但它始终显示默认图像。任何线索我做错了什么,我很抱歉这是一个天真的问题
这是我的看法
<View id="image">
</View>
和我的控制器
userImage = Ti.UI.createImageView({
id : "userImage",
image : "http://graphics.ucsd.edu/~henrik/images/imgs/face_bssrdf.jpg",
width : 90,
center:0,
height : 90,
});
$.image.add(userImage);
必须升级 sdks 在 4.0 时有问题。0.RC
以下代码适用于 4.0.0.GA 和 4.1.0.GA:
var win = Ti.UI.createWindow({
backgroundColor: 'green'
});
var userImage = Ti.UI.createImageView({
id: "userImage",
image: "http://graphics.ucsd.edu/~henrik/images/imgs/face_bssrdf.jpg",
width: 90,
center: 0,
height: 90,
});
win.add(userImage);
win.open();
所以我一直在尝试使用 titanium 加载远程图像,这是我正在使用的片段,但它始终显示默认图像。任何线索我做错了什么,我很抱歉这是一个天真的问题
这是我的看法
<View id="image">
</View>
和我的控制器
userImage = Ti.UI.createImageView({
id : "userImage",
image : "http://graphics.ucsd.edu/~henrik/images/imgs/face_bssrdf.jpg",
width : 90,
center:0,
height : 90,
});
$.image.add(userImage);
必须升级 sdks 在 4.0 时有问题。0.RC
以下代码适用于 4.0.0.GA 和 4.1.0.GA:
var win = Ti.UI.createWindow({
backgroundColor: 'green'
});
var userImage = Ti.UI.createImageView({
id: "userImage",
image: "http://graphics.ucsd.edu/~henrik/images/imgs/face_bssrdf.jpg",
width: 90,
center: 0,
height: 90,
});
win.add(userImage);
win.open();