如何在Webview Appcelerator Titanium中显示/显示远程图像URL?

时间:2013-04-08 11:26:22

标签: webview titanium imageurl

我正试图在iPhone和iPad中将远程图像网址显示到webview中Android使用Appcelerator Titanium。远程图像显示在webview中,但完整图像不适合应用程序中的webview。

代码:

var webView = Ti.UI.createWebView({
        url : 'https://cloudinary-a.akamaihd.net/dhl5ctlq1/image/upload/v1364796700/business_logo_4_53_1364308382.jpg',
        top : 0,
        left : x(60),
        height : '80dp',
        width : '80dp',
        scalesPageToFit : true,
        showScrollbars : false,
        scrollsToTop:false,
        backgroundColor : "red"
    });

1 个答案:

答案 0 :(得分:0)

不使用WebView,WebView用于显示Web内容(读取:HTML),而只是使用ImageView,这些支持远程URL,只记得在iOS上这些远程图像被缓存,但在Android上它们不是(在appcelerator方面的大疏忽)。试试这个:

var image = Ti.UI.createImageView({
        image : 'https://cloudinary-a.akamaihd.net/dhl5ctlq1/image/upload/v1364796700/business_logo_4_53_1364308382.jpg',
        top : 0,
        left : x(60),
        height : '80dp',
        width : '80dp'
        backgroundColor : "red"
    });