When we launch an application in Android, it creates the first thread which is known as the “main” thread and it is manage dispatching of …
Services in android you must know
Introduction A Service in Android can be consider as an application component that can use for perform long-running operations in the background. Service does not …
DATA BINDING IN ANDROID JETPACK YOU MUST KNOW
Introduction While we are working in any android app, the most important task is create a UI and set the data value to view in …
NETWORKING WITH RETROFIT IN ANDROID YOU MUST KNOW
Introduction Retrofit is a type safe rest client for android and java development by square.it uses OkHttp library for Http request and it consider best …
NETWORKING WITH VOLLEY IN ANDROID YOU MUST KNOW
We are using networking in mobile applications from a while. In the early, we used main thread for network call but Google stop calls network …
Room database in android jetpack you must know
database is a part of the Android Jetpack which is persistence library. Room database is an abstraction layer over SQLite which allow us more robust database …
Android Launch Mode and Flag you need to know
Introduction Since the introduce of Android development, here is that the one among the quality things that haven’t changed is launch modes. Launch modes in …
Check now this Coroutine Builder and Scope Functions
A coroutine is a concurrency design pattern that you can use on Android to simplify code that run asynchronously. Coroutine is not a thread but …
Kotlin Coroutine v/s Thread you need to know
As we know that asynchronous programming is very important for advance applications. because by the use of it we can increases amount of work that …
All you need to know about kotlin OOPS concept part-2
Kotlin Visibility Modifier Kotlin visibility modifiers are the special variety of keywords which are wont to make our variable or method restricted for the employment …