Search code examples
androidrx-javaobservableobservablelist

Android - Observable List


Is there any observable list in Android? ObservableList class doesn't exist! I want to have a list that if any item changes occurred, notify me to update views.

Note: If there's no native way, please teach me how to implement one using RxJava if it can help.


Solution

  • People who faced this problem could use my implementation of ObservableList which uses RxJava.

    Thanks to Daniel Zolnai and Maurice Gavin.