我有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
});

09-05 12:48