https://kotlinlang.org logo
e

edwardwongtl

06/13/2018, 3:14 AM
And instead of
Map<Id, progress>
, you should be using
Map<Id, LiveData<Int>>
, such that you can bind the live data to views and update accordingly.
👍 2