update progress bar with Firebase uploading

后端 未结 2 902
有刺的猬
有刺的猬 2020-12-08 16:36

I tried to add a progress bar to uploading files on firebase. but unfortunalty it does not indicate upload progress. both logcat & progress bar only indicate when file

2条回答
  •  离开以前
    2020-12-08 17:21

    Change the grouping of terms in your calculation of progress to force conversion to float. As your code is now, you are dividing two longs. The result of the division will be 0 until getBytesTransferred() == getTotalByteCount(), then it will be 1.

     double progress = (100.0 * taskSnapshot.getBytesTransferred()) / taskSnapshot.getTotalByteCount();
    

提交回复
热议问题