kevinmost
04/13/2017, 4:51 PMRecyclerView
you don't want to just notifyDataSetChanged
if you're changing one item; you want to notifyItemChanged(index)
. This gets clunkier if you're just using an Observable as your source of truth for what to display in a RecyclerView in my experience. Maybe there's a better way?