Understanding and practice of RxJava & RxBinding of Android part -2

Understanding and practice of RxJava & RxBinding of Android part -2

In my last tutorial, I have explained the basic functions and features of RxJava2. I would be recommended to check part -1 post before continue reading this post because it will help you to better understand this post. Here is my last post of  Basic understanding and practice of RxJava2 function in Android part -1. We…

Basic understanding and practice of RxJava2 functions in Android part -1

Basic understanding and practice of RxJava2 functions in Android part -1

No Doubt RxJava is getting popular in Android applications development. I have already described a few days back about the Reactive Observable in RxJava. I would be recommended please check this post understanding Java 8 stream and Rx Observable in RxJava2. Today we will learn few very basic concept of RxJava which are using in android…

Upload a file by using retrofit in android

Upload a file by using retrofit in android

In this tutorial, we will learn how to upload a file on the server by using Retrofit.  Retrofit is the most popular for networking API call. It is very simple and cleaner way API call in the Android application. Retrofit used OkHttp request call which is extended and customized of Http request. Android developers love this because it is pretty simple and easy…

Auto Logout or Expire the session after 5 minutes of user inactivity

Sometimes we need to log out the user or expire his session if he did not perform any interaction with the app for 5 minutes or even If he locks the screen from the lock button. This can be implemented very easily by maintaining a thread(Waiter) which will give alert once 5 minutes are over…