4

我正在使用 Cordova 开发适用于 Android 的应用程序。我已经熟悉 FileTransfer 并且已经知道如何下载文件。问题是当我下载一个大文件(20 MB)时,这个下载需要一段时间而没有通知用户实际发生了一些事情。

我所管理的只是通过以下方式将文件下载到 SD 卡中:

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, fail);

然后向用户显示该文件正在下载的对话框以及他在哪里可以找到它。但我想让用户知道进度。或者是否有可能以某种方式在后台处理此文件传输,以便用户可能会在 Android 的顶部栏中看到一个下载图标,就像通过默认浏览器下载文件时一样?

非常感谢您的帮助。

代码:

document.addEventListener('deviceready', function() {                
    window.requestFileSystem  = window.requestFileSystem || window.webkitRequestFileSystem;
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, function(){
        console.log("error getting LocalFileSystem");
    });
}, false);

function gotFS(fileSystem) {
    // save the file system for later access
    window.rootFS = fileSystem.root;
}

fileTransfer.download(
    http://somewhere.com/bigfile.zip,
    window.rootFS,
    function(entry) {
        console.log("download complete: " + entry.fullPath);
    },
    function(error) {
        console.log("download error source " + error.source);
    },
);
4

1 回答 1

11

Raymond Camden 写了一篇很好的文章。在使用 PhoneGap 的进度功能时,您可以使用 bootstrap 来显示进度条,以便让进度条增长:

fileTransfer.onprogress = function(progressEvent) {
if (progressEvent.lengthComputable) {
loadingStatus.setPercentage(progressEvent.loaded / progressEvent.total);
} else {
loadingStatus.increment();
}
};

在这里阅读

于 2013-09-28T19:28:04.877 回答