Android Layouts

Layouts Layouts are subclasses of the ViewGroup class. A typical layout defines the visual structure for an Android user interface and can be created either at run time using View/ ViewGroup objects or we can declare our layout using a simple XML file which is located in the res/layout folder Read more…

Loading

Difference Between

Difference between View and View Group Slno View View Group 01. View is simply a rectangle structre that is used to create required UI designs for an Activity which responds the user’s actions or events. ViewGroup is an invisible frame or container, normally used to hold/combine one or more View Read more…

Loading

Reference Books

Slno Name of Books Authors Publications 01. Headfirst Android Development Dawn Griffiths O′Reilly 02. Android App Development FD Michael Burton For Dummies 03. Android Programming for Beginners John Horton Packt Publishing 04. Android Cookbook Ian Darwin O′Reilly 05. Android Application Development All-in-One For Dummies Barry Burd For Dummies 06. Android Read more…

Loading

Google Play Services

Google Play Account/Play Store Google Play, also known as the Google Play Store and formerly Android Market, is a digital distribution service operated and developed by Google Inc. The Play Store, officially known as Google Play Store, is the primary app store for Android devices. It is developed and maintained Read more…

Loading

REST and JSON in Android

REST/RESTful Introduction It is also called RESTful API. REST stands for Representational State Transfer (REST). Definition RESTful API is a type of web service architecture that follows the principles of Representational State Transfer (REST). Characteristic Features REST is an architectural style for designing networked applications. They are known for their Read more…

Loading

SQLite Database

Introduction SQLite is a database engine written in the C programming language. D. Richard Hipp designed SQLite to fulfill the purpose of ‘no administration required’ for operating a program. The first release date -17 August 2000. Website is – https://www.sqlite.org. Definition SQLite is a lightweight and compact database that does not require any Read more…

Loading

Intent

Introduction In Android development, an “intent” is a fundamental concept that represents an abstract description of an operation to be performed. Definition Intents are a crucial part of the Android platform’s component-based architecture, enabling different components (such as activities, services, and broadcast receivers) to interact with each other. Intents are Read more…

Loading

Merging in Data Structure

Introduction of Merging in Data Structure The merging in data structure is a fundamental process or operation in many algorithms and data manipulation tasks. Definition of Merging Merging is the process of combining two or more sets of data or lists/files into a large, single-sorted set/lists/file.  Characteristics of Merging The merging process Read more…

Loading

Components of Android App

A typical Android app is composed of various components that work together to provide a complete app construction. Each component has a specific role and interacts with other components to create the required functionality of the app. These components work together to create the functionality of an Android app. It Read more…

Loading