Top "Rx-android" questions

RxJava bindings for Android

Retrofit "IllegalStateException: Already executed"

I have a Retrofit network call that id like to run every 5 seconds. My current code: Handler h = new Handler(); …

android retrofit okhttp rx-android retrofit2
RxAndroid textview events called automatically before text change events

I used rxandroid for debounce operation on an edittext search I used private void setUpText() { _mSubscription = RxTextView.textChangeEvents(searchStation)// .debounce(500, …

android rx-java rx-android
How Retrieve Response Body with RxAndroid and Retrofit 2?

I am using Retrofit 2 (beta 4), and I was looking to move from using the standard Call response to the RxAndroid …

android rx-java rx-android retrofit2 okhttp3
Retrofit2 + RxJava2 + RxAndroid error

I am getting error message as below when try to crate Subscriber and subscribe. can not resolve method 'subscribe(anonymous …

java android retrofit2 rx-android rx-java2
RxJava onError Can't create handler inside thread that has not called Looper.prepare()

first i will try to explain what im trying to do, next you will see what im doing(code). Since …

android rx-java rx-android
How to update UI from Android service using RxJava/RxAndroid

I have a Bound Service which responsible for downloading files and thus it knows the downloading status/progress. And the …

android android-service rx-java ui-thread rx-android
How to handle Item clicks for a recycler view using RxJava

I was interested to find out what is the best way to respond to a item click of a recycler …

android android-recyclerview rx-java rx-android
Using Consumer interface of Reactivex

I'm new to ReactiveX. I was learning it from reading source-code. Everything was so clear but suddenly I got this …

android retrofit rx-java rx-android reactivex
Cannot resolve rxjava2 with gradle 3.0

Hare is my app gradle: apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.example.atumanin.testandroidannotations" minSdkVersion 15 targetSdkVersion 26 …

android android-gradle-plugin rx-android rx-java2
Convert AsyncTask to RxAndroid

I have the following method to post response to UI using otto and AsyncTask. private static void onGetLatestStoryCollectionSuccess(final StoryCollection …

android android-asynctask rx-java rx-android