New to RxJava / RxAndroid, and I find the lack of examples getting in the way. As a way to delve into the use of Rx, id would like to try something small to work. Basically, if the EditText has the text entered into it, include the Button under it.
I stumbled upon this answer, but editing the authors really doesn't show how to fully implement something like this.
From what I have compiled, I can use RxBindings to create Observable like:
Observable<CharSequence> observable = RxTextView.textChanges(mEditText);
Presumably I now need .subcribe() a Observer to keep track of changes in the Observable , but I'm not sure how this will be done.
Also, how would you create EditTexts Observable without using RxBindings, if necessary?
Edit: Although Retrolambda exists, answers showing how to implement this without lambdas (or both) would be helpful.
android rx-java rx-android
Orbit
source share