Recyclerview Changing Items During Scroll

前端 未结 15 754
我在风中等你
我在风中等你 2020-11-27 10:38

I have a RecyclerView. Each row has a play button, textview and Progressbar. when click on the play button have to play audio from my sdcard and have to progress Progressbar

15条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-27 11:27

    Why don't you try like this,

        HashMap progressHashMap = new HashMap<>();
    
        //...
        if(!progressHashMap.containsKey(downloadpath)){
            progressHashMap.put(downloadpath, mPlayer.getCurrentPosition());
        }
    
        progressbar.setProgress(progressHashMap.get(downloadpath));
    

提交回复
热议问题