I am using realm DB for the first time. I am listing File info in recyclerview from Realm results using RealmRecyclerViewAdapter . I need to update each item with its download progress, without writing the progress to DB. I am using android DownloadManager for that. How can I do that please help me.
            Asked
            
        
        
            Active
            
        
            Viewed 58 times
        
    0
            
            
        
        Phantômaxx
        
- 37,901
 - 21
 - 84
 - 115
 
        Nabeel K
        
- 5,938
 - 11
 - 38
 - 68
 
- 
                    1You could have a `Map
` (with proper types) and update the views based on that? – EpicPandaForce Dec 06 '17 at 10:54 - 
                    you mean inside adapter ? – Nabeel K Dec 06 '17 at 11:04
 - 
                    Pretty much, yeah – EpicPandaForce Dec 06 '17 at 11:07
 - 
                    1thanks a lot @EpicPandaForce. It worked for me. – Nabeel K Dec 07 '17 at 09:13