我正在从用户手机中的服务器下载一些文件 在 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);
}
//有没有和通知更新方法有关的东西