Android 下载大文件时应用延迟

Android app lags while a big file is downloaded

我在我的 android 应用程序中使用 Fast-Android-Networking 库来通过它下载文件。

对于小于 15 megabytes 的文件,我的代码工作正常。但是,当我尝试下载长度超过 20 megabytes 的文件时,应用程序和目标设备都会出现延迟。

当我用我的 512mb RAM 的旧 Lenovo A319 进行测试时,我发现了问题,并认为这一定是硬件问题。

但是,在联想 A6000、三星 J1 4G、摩托罗拉 Moto G Turbo 和 LYF Water 11 上测试该应用程序后,我得出的结论是该应用程序在所有设备上都滞后,仅在文件正在下载时。

我不明白为什么会出现这个问题。我也检查了 logcat 但没有发现任何可以帮助我理解问题根源的东西。

有什么想法吗?

我的一些代码:

    AndroidNetworking.download(link, Environment.getExternalStorageDirectory().getPath() + "/ABCD", title + "."+fileExtension)
            .setTag("Download: " + title)
            .setPriority(Priority.HIGH)
            .build()
            .setDownloadProgressListener(new DownloadProgressListener() {
                @Override
                public void onProgress(long bytesDownloaded, long totalBytes) {
                    int percentage = (int) Math.floor(bytesDownloaded * 100.0 / totalBytes);
                    System.out.println(percentage);
                    //I'm using Notification to report progress to user.
                    mBuilder.setProgress(100, percentage, false);
                    mNotifyManager.notify(id, mBuilder.build());
                }
            })
            .startDownload(new DownloadListener() {
                @Override
                public void onDownloadComplete() {
                    if (file.length() < 500000) {

                        Snackbar.make(mView, "Download Error", Snackbar.LENGTH_LONG).show();
                        mBuilder.setContentText("Download Error!").setProgress(0, 0, false);
                        mNotifyManager.notify(id, mBuilder.build());

                    } else {

                        Uri path = Uri.fromFile(file);
                        Intent intent = new Intent(Intent.ACTION_VIEW);
                        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                        intent.setDataAndType(path, getMimeType(path.toString()));

                        PendingIntent notifyPIntent = PendingIntent.getActivity(mContext.getApplicationContext(), 0, intent, 0);
                        mBuilder.setContentIntent(notifyPIntent);

                        mBuilder.setContentTitle("Download Completed")
                                .setContentText("Download complete! - Click To Play")
                                .setProgress(0, 0, false);
                        mNotifyManager.notify(id, mBuilder.build());

                        Snackbar.make(mView, "Download Completed : " + title + "."+fileExtension, Snackbar.LENGTH_LONG).setAction("Play Now", new View.OnClickListener() {
                            @Override
                            public void onClick(View v) {
                                Uri path = Uri.fromFile(file);
                                Intent intent = new Intent(Intent.ACTION_VIEW);
                                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                                intent.setDataAndType(path, getMimeType(path.toString()));
                                mContext.startActivity(intent);
                            }
                        }).show();

                    }
                }

                @Override
                public void onError(ANError error) {
                    Snackbar.make(mView, "Download Error : " + error.toString(), Snackbar.LENGTH_LONG).show();
                    error.printStackTrace();
                    mBuilder.setContentText("Download Error!");
                    mBuilder.setProgress(0, 0, false);
                    mNotifyManager.notify(id, mBuilder.build());
                }
            });

基于 this 问题,库在内存使用方面存在严重问题。