vince-styling / Netroid

Netroid is a Http Framework for Android that based on Volley
http://netroid.vincestyling.com/
285 stars 126 forks source link

onProgressChange速度能控制吗 #7

Open fayou147 opened 9 years ago

fayou147 commented 9 years ago

这个在FileDownloadRequest中handleResponse中的delivery.postDownloadProgress(this, fileSize, downloadedSize);之前加一个判断条件 long currTime = SystemClock.uptimeMillis(); if (currTime - lastUpdateTime >= DEFAULT_TIME) { lastUpdateTime = currTime; delivery.postDownloadProgress(this, fileSize, downloadedSize); }

greylink commented 9 years ago

谢谢,分享。