
Android WebView with Example
If you want to deliver a web application (or just a web page) as a part of a client application, you can do it using WebView. The WebView class is an extension of Android’s View class that allows you to…
Learn Coding For Free
Learn Coding For Free
If you want to deliver a web application (or just a web page) as a part of a client application, you can do it using WebView. The WebView class is an extension of Android’s View class that allows you to…
Arrays are an important aspect of any programming language. An array is a group of like-typed variables that are referred to by a common name. An array is a set of variables that is referenced by using a single variable…
In android, Intent is a messaging object which is used to request an action from another app component such as activities, services, broadcast receivers, and content providers. Generally, in android, Intents will help us to maintain the communication between app components from the…
In android, Service is a component which keep an app running in the background to perform long-running operations based on our requirements. For Service, we don’t have any user interface and it will run the apps in the background like…
Android AsyncTask is an abstract class provided by Android which gives us the liberty to perform heavy tasks in the background and keep the UI thread light thus making the application more responsive. An asynchronous task is defined by 3…
In this tutorial, you will get a complete understanding of the Android Broadcast Receiver. You will learn about system-generated intents with their working, classes of broadcasts and implementation of broadcast receivers in Android studio. What is Android Broadcast Receiver? A…
A Fragment represents a reusable portion of your app’s UI. A fragment defines and manages its own layout, has its own lifecycle, and can handle its own input events. Fragments cannot live on their own–they must be hosted by an…
In android, Activity represents a single screen with a user interface (UI) of an application and it will acts an entry point for users to interact with an app. Generally, the android apps will contain multiple screens and each screen…
In android, application components are the basic building blocks of an application and these components will act as an entry point to allow system or user to access our app. The manifest file contains the app’s metadata, its hardware configuration,…
Android architecture contains different number of components to support any android device needs. Android software contains an open-source Linux Kernel having collection of number of C/C++ libraries which are exposed through an application framework services. Following are main components of…