You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i want to download a video and everything is working fine but what i want to do is "check received or downloaded data/video continuously until full data or video download".
Check means i want to track how many bytes i/volley received
is it possible ? if yes then how ?
The text was updated successfully, but these errors were encountered:
The answer depends on the underlying HTTP stack you're using. As of #328, you can extend HurlStack and override createInputStream to return a FilterInputStream which can monitor when bytes are read and dispatch callbacks along the way to the request. See HurlStackTest for an example of this. (This is not yet in an official release, so you'd need to use a SNAPSHOT build or build from source).
i want to download a video and everything is working fine but what i want to do is "check received or downloaded data/video continuously until full data or video download".
Check means i want to track how many bytes i/volley received
is it possible ? if yes then how ?
The text was updated successfully, but these errors were encountered: