Arun Chandravanshi

Android Multi-Language Supported App Example

Android is one of the most popular operating system runs on many devices in many regions and growing day by day. When you want your app to support wider audience ,it is always a good idea to make the app localized.To reach the most users, your app should handle text, audio files, numbers, currency, and graphics […]

Android Multi-Language Supported App Example Read More »

Android Capture Image From Camera And Gallery

In this tutorial i will demonstrate you how to capture an image from camera and pick an image from gallery and then display it in an imageView by creating a simple ImagePickerApp.     Create new project 1. Create a new project in Android Studio from File ⇒ New Project by filling the required details. When it prompts you

Android Capture Image From Camera And Gallery Read More »

Android Sliding Views Using ViewPager With PagerAdapter,FragmentPagerAdapter

In this tutorial we are going to learn about how to create swipe views in android application. We can create swipe view in android application using the ViewPager widget which is available in the support library. ViewPager is a layout widget which is capable of holding many child views and each child view represent a

Android Sliding Views Using ViewPager With PagerAdapter,FragmentPagerAdapter Read More »

Android Navigation Drawer example

As you know lot of android applications introduced a sliding panel menu to navigate between major modules of the application. Previously this kind of UI was done using some third party libraries where a list view and some swiping gestures used to achieve this. But now android  introduced sliding panel menu by introducing a newer

Android Navigation Drawer example Read More »

Android Dagger2 Example Using Retrofit

Here in this tutorial i will explain you what the dependency injection is and why do we need it? I will also let you know why do we use it and what happens when we don’t use it?We will also learn about how we inject dependency in our android project using dagger2 . What is

Android Dagger2 Example Using Retrofit Read More »

Android JetPack WorkManager Example

Google released Android Jetpack. It’s a set of libraries, tools and architectural guidance to help make it quick and easy to build great Android apps. In this Android Jetpack, team at Google release one library specifically designed for scheduling and managing the background tasks. It’s called “WorkManager”. WorkManager The WorkManager API makes it easy to specify

Android JetPack WorkManager Example Read More »

Android JobScheduler Example

Introduction When working with Android, there will be occasions where you want to run a task at a later point in time or under certain conditions, such as when a device is plugged into a power source or connected to a Wi-Fi network. Google has provided a new component known as the JobScheduler API to handle this

Android JobScheduler Example Read More »

ReactNative Working With Firebase Using ChatApp Example

Firebase A fully managed platform for building iOS, Android, and web apps that provides automatic data synchronization, authentication services, messaging, file storage, analytics, and more. In this tutorial, I will demonstrate you how we will store our react native application related data in firebase providing services like database,storage etc.Here we will create FriendlyChatApp and its text data

ReactNative Working With Firebase Using ChatApp Example Read More »

Android Jetpack Paging Example Using Room

Paging Library Announced with new additions at Google IO 2018, the Paging Library is a part of Android Jetpack. The Paging Library makes it easier for you to load data gradually and gracefully within your app’s RecyclerView. The Paging Library helps your app observe and display a reasonable subset of this data. This functionality has several advantages: Data requests consume

Android Jetpack Paging Example Using Room Read More »

Understanding Redux With Simple Example

Redux Redux is all about having some central store that managing our entire application state or where we store our entire application state. Get GITHUB code from HERE. Getting Started You will have to install and configure React Native. If you don’t know how then you can visit to my this tutorial . Create a new

Understanding Redux With Simple Example Read More »