ahmedrizwan / RxRecyclerAdapter

Rx based RecyclerView Adapter
192 stars 28 forks source link

How to update a data?please #10

Closed CodeK1988 closed 7 years ago

CodeK1988 commented 7 years ago

thanks.

ahmedrizwan commented 7 years ago

Create an instance of RxDataSource and call method updateDataSet on it. That should do the trick.

rxDataSource.updateDataSet(dataSet).updateAdapter();

More details and examples can be found here.

CodeK1988 commented 7 years ago

Thanks.