1

我从文件系统获取图像时遇到问题。在 iOS 上工作正常。

首先,我使用这个函数在文件系统中保存一个远程图像:

img.imagen = 来自远程图像的 url(例如http://onesite.es/img2.jpeg

function descargarImagen(img, callback){

    var path = img.imagen;
    var filename = path.split("/").pop();

    var xhr = Titanium.Network.createHTTPClient({
        onload: function() {
            // first, grab a "handle" to the file where you'll store the downloaded data
            var f = Ti.Filesystem.getFile(Ti.Filesystem.applicationDataDirectory, filename);
            f.write(this.responseData); // write to the file
            Ti.API.debug("-- Imagen guardada: " + f.nativePath);
            callback({path: f.nativePath});
        },
        timeout: 10000
    });
    xhr.open('GET', path);
    xhr.send();
}

现在,我想分享这张创建 Android Intent 的图片:

args.image = f.nativePath(在上一个函数中)

var intent      = null;
var intentType  = null;

intent = Ti.Android.createIntent({
    action: Ti.Android.ACTION_SEND
});

// add text status
if (args.status){
    intent.putExtra(Ti.Android.EXTRA_TEXT, args.status);
}

// change type according to the content
if (args.image){
    intent.type = "image/*";
    intent.putExtraUri(Ti.Android.EXTRA_STREAM, args.image);
}else{
    intent.type = "text/plain";
    intent.addCategory(Ti.Android.CATEGORY_DEFAULT);
}

// launch intent
Ti.Android.currentActivity.startActivity(Ti.Android.createIntentChooser(intent, args.androidDialogTitle));

我做错了什么?

4

0 回答 0