RxJava2-Android-Samples
RxJava2-Android-Samples copied to clipboard
In SearchActivity error?
When I click on keyboard button "actionSearch" observer call "onComplete" and observable do not react on text changed event.
@amitshekhariitbhu Yes. The observer(subject) completes in onQueryTextSubmit, and then subsequent onNext calls dont work. Any action performed, after text submission dosent work. Maybe onComplete should not be called in onQueryTextSubmit?
As the current project is just a sample project. But yes, we can make it better here. There are two ways to do it.
- Do not call onComplete.
- Another solution can be resubscribe on it.