Reactive Everything: View Events
Learn how to turn View events into Observable streams.
We'll cover the following...
We'll cover the following...
UI events, such as Button clicks or changes in an EditText, are another good place to use RxJava. An open-source library, RxBinding, created by Jake Wharton, provides the necessary bindings to turn View events into Observable streams.
Using RxBinding, we can turn View click events into an Observable.
Example
This example is quite simple, but the ...