I need know how much bytes has been uploaded for update a progress bar android

前端 未结 4 1213
半阙折子戏
半阙折子戏 2020-12-21 02:23

I am developing an app for upload video to a Apache/PHP Server. In this moment I already can upload videos. I need show a progress bar while the file is being uploaded. I ha

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-21 03:23

    Have you tried extending FileBody? Presumably the POST will either call getInputStream() or writeTo() in order to actually send the file data to the server. You could extend either of these (including the InputStream returned by getInputStream()) and keep track of how much data has been sent.

提交回复
热议问题