I am a new android and rxjava. I went through many examples where we listen to events with rxbindings. such as
RxView.clicks(b).subscribe(new Action1<Void>() { @Override public void call(Void aVoid) {
or
RxTextView.textChanges(name) .subscribe(new Action1<String>() { @Override public void call(String value) {
Now I'm trying to do the same for android spinner. I want to listen to the event selected for the item. can anyone help?
source share