如何提高我的Android手机中较大文件的下载速度?

时间:2017-05-19 09:51:08

标签: android notifications downloading android-remoteview

我正从用户手机的服务器下载一些文件 下载在Kitkat版本手机中正常工作,即它大约1-2mbps,但高于下载非常慢。 代码是: -

//下载代码:

while ((len1 = is.read(buffer)) != -1)
{
               int demo = (int)(i * 100L / lengthOfFile);
               if (demo%5==0)
               {
                  updateNotification("TITLE", (int) (i * 100L / lengthOfFile), "TITLE2",1234);
               }

              fos.write(buffer, 0, len1);

}

//通知面板更新: -

private void updateNotification(String text,int progress,String title,int notify)

{

notification.contentView.
setProgressBar(R.id.status_progress,100,progress,false);
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify(notify, notification);
}

//是否存在与通知更新方法相关的内容

0 个答案:

没有答案