ahmedrizwan / RxRecyclerAdapter

Rx based RecyclerView Adapter
192 stars 28 forks source link

how to get RxAdapter,please? #15

Closed CodeK1988 closed 5 years ago

CodeK1988 commented 5 years ago

I want notifyItemChanged. thanks

CodeK1988 commented 5 years ago

@ahmedrizwan

mohsin commented 4 years ago

@yizuochengchi I use JakeWharton's RxBinding for my project and wanted the same. I managed to do it using:

(rvItems.adapter as RecyclerView.Adapter<SimpleViewHolder<String, ItemLayoutBinding>>).dataChanges().subscribe {
    // Code for when item changes occur
}