我有Observable
像:
Observable<Integer> dropdownChange = ReactiveUIObservables.selectionChange(myDropdown)
我现在有了:
LifecycleObservable.bindFragmentLifecycle(lifecycle(), dropdownChange)
.ObserveOn(AndroidSchedulers.mainThread))
.SubscribeOn(AndroidSchedulers.mainThread())
.subscribe(this::onDropdownChange);
而且它正在工作,现在在
DropdownChange
之后,我想在selectionChange
上运行另一个方法。怎么做? 最佳答案
您可以使用subscribe
调用多种方法。例如。
subscribe(myValue -> {
onDropdownChange(myValue);
// call the other method
});