Top "Rx-android" questions

RxJava bindings for Android

How do I get Response body when there is an error when using Retrofit 2.0 Observables

I am using Retrofit 2.0 to make api calls that return Observables. It all works good when the call went through …

android retrofit rx-java rx-android
android rxjava sort list with comparator class

I started to use rxjava with my android projects. I need to sort returning event list from api call. I …

android sorting collections rx-java rx-android
Iterate list with RxJava/RxAndroid

I'm new to RxJava/RxAndroid but I'm stuck with my use case. I try to iterate a List<A&…

rx-java rx-android
RxJava : How to handle error with zip operator ?

I am using RxJava and RxAndroid with Retrofit2. Observable<ResponseOne> responseOneObservable = getRetrofitClient().getDataOne() .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.…

android error-handling rx-java retrofit2 rx-android
Observable runs on main thread even though subscribeOn() is called on another thread

I got a weird issue in one of my activities. When coming back from taking a picture / video, in my …

java android rx-java rx-android
How to zip few observables in Kotlin language with RxAndroid

I have some problem. I'm a beginer in RxJava/RxKotlin/RxAndroid, and dont understand some features. For Example: import rus.…

android rx-java kotlin rx-android rx-kotlin
RxJava single background thread scheduler

I'm fairly new to RxJava so this is probably a dumb question. I am going to describe my scenario. I …

java android rx-java rx-android
Retrofit with Rxjava Schedulers.newThread() vs Schedulers.io()

What are the benefits to use Schedulers.newThread() vs Schedulers.io() in Retrofit network request. I have seen many examples …

android retrofit rx-java rx-android
Rxandroid What's the difference between SubscribeOn and ObserveOn

I am just learning Rx-java and Rxandroid2 and I am just confused what is the major difference between in SubscribeOn …

java android rx-java rx-android rx-java2
What is the proper way to handle subscriptions in RxJava/RxAndroid for an Activity Lifecycle?

I am just getting started on RxJava/RxAndroid. I want to avoid context leaks so I created a BaseFragment like …

java android rx-java rx-android