Top "Rx-android" questions

RxJava bindings for Android

Filter list of objects in RxJava

I am trying to filter the list on the basis of it's property. For example, Sensors class has a property …

android rx-java reactive-programming rx-java2 rx-android
Deliver the first item immediately, 'debounce' following items

Consider the following use case: need to deliver first item as soon as possible need to debounce following events with 1 …

rx-java rx-android
multiple api request using retrofit and rx java

I am new to android and I have a scenario where I want to get get data from multiple api. …

android retrofit retrofit2 rx-java2 rx-android
How to use Flowable in RxJava 2?

There is an introduction of new Flowable in RxJava2. How to use this in android. There was no Flowable in …

java android rx-java rx-android
How to resolve Duplicate files copied in APK META-INF/rxjava.properties

I am using rxjava and rxvolley on my android aplication. When I try to run it I get this error …

android android-gradle-plugin rx-java rx-android
How to handle rotation with Retrofit and RxJava/RxAndroid in Activity?

I read here that we can use some global cache in order to handle rotation. You can prevent this by …

android rotation retrofit rx-java rx-android
Debouncing button clicks using Rx

I'm trying to make a simple "button debouncer" which will count filtered clicks and display it thru a TextView. I …

android rx-java rx-android
rxjava add items after observable was created

I just started using rxjava and I got stuck. Maybe I'm not using rxjava in the right way, but I …

asynchronous observable rx-java rx-android
Use RxAndroid or RxKotlin when programming in Kotlin for Android?

I am going to start using reactive programming in my Android project. I am using Kotlin as primary language and …

android rx-android rx-kotlin
How to pass a key with null value or an empty String in the request body in retrofit android

I need to pass the keys even with no values as the keys are mandatory at the server side. But …

android retrofit2 rx-android