Category Archive for ‘ Android ’

How to show enable location dialog like Google maps?

Enable Location Dialog Today we are going to learn  about how to show location request settings dialog in our own android applications like Google map, Ola, Uber ect. First of all, What is location setting dialog ? The location settings dialog which lets you turn your locations settings ON or OFF directly from here without

Personal GPS Tracking App Sample

Android allows us to integrate google maps in our application. You can show any location on the map, or can show different routes on the map e.t.c. You can also customize the map according to your choices. Here is an example demonstrating the use of GPS Tracking class. It creates a basic M application that

Android SMS Verification App – User Verification with OTP

Android SMS Verification App Like WhatsApp Android OTP verification is the best method to avoid spamming. Hello friends, in this tutorial we going to create a simple Android SMS Verification App. You already seen this example in some popular applications like WhatsApp, Hike etc. They verify the user’s phone number by sending an OTP (One

Parse JSON Data – Android Example

Parse JSON data android example, JSON stands for JavaScript Object Notation.It is an independent data exchange format and is the best alternative for XML. In this example we will learn how to parse JSON in android. For better understanding taking a simple and static JSON to parse. Sample JSON: { “Android”: [ { “p_name”: “Elite

Android Activity Lifecycle

Android Activity Lifecycle is controlled by 7 methods of android.app.Activity class. The android Activity is the subclass of ContextThemeWrapper class.   An activity is the single screen in android. It is like window or frame of Java. By the help of activity, you can place all your UI components or widgets in a single screen.