Recyclerview Changing Items During Scroll

前端 未结 15 704
我在风中等你
我在风中等你 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:20

    Override the method getItemViewType in adapter. in kotlin use

    override fun getItemViewType(position: Int): Int {
        return position
    }
    

提交回复
热议问题