kaushikgopal / RxJava-Android-Samples

Learning RxJava for Android by example
Apache License 2.0
7.55k stars 1.37k forks source link

Fix for #94 "GUI elements must not be accessed from non-main threads" #95

Closed tmtron closed 7 years ago

tmtron commented 7 years ago

Now the EditText _inputSearchText is not accessed anymore from a non-UI thread by the filter() operator: instead we use the text-change event.

This fixes #94

kaushikgopal commented 7 years ago

🙏