Android Archive
04 Nov 2016
SRS – Android Client Code Part 4

SRS – Server Side Code Part 1 SRS – Server Side Code Part 2 SRS – Server Side Code Part 3 SRS – Android Client Code Part 4 SRS – Adroind Code which handles files on clients side, provides GUI interface and connectivity with server on a specific ip and port. Question Activity on Android
16 Mar 2015
Intent class in android – part 2

Intent class in android In previous article we discussed Intent class. In this article we will explore Intent Class in more detail and how we can start activities with Intents. We can start activity by calling startActivity(Intent intent, ...) and startActivityForResult(Intent intent, ...) When we call these methods, Android has to figure out which single
12 Mar 2015
Android – What is Intent Class

Android – What is Intent Class? An Intent Class is a Data Structure that represents 1. An operation to be performed, or 2. An event that has occurred. Intents provide a flexible language for specifying operations to be performed. E.g Pick a contact, Take a photo, Dial a phone number or show a map. Intent
10 Mar 2015
Activity class in Android application development
Activity class in Android application development In previous article we discussed about android activity class and task and task back stack, activity life cycle and so on. In this article we will discuss methods of activity class. OnCreate method This method is called when an activity is created. This method sets up the initial state.
07 Mar 2015
Activity class in android application development
Activity class in android application development In previous article we explored components of android application development. In this lecture we will discover activity class in detail. Activity class are the primary class that through which the user can interact with the application. Each activity should support a single focused thing a user can do like
04 Mar 2015
Fundamentals of Android application development part 2

Fundamentals of Android application development part 2 In one of previous post we looked at android application development part 1. In this article we will explore android platform fundamental application development components in more details. User Interface Layout User Interface Layout are specified in XML files. Some tools allow use to create the application layout
07 Oct 2014
Fundamentals of android application development

In this article on fundamentals of android application development we will discuss 4 basic building blocks of android application development from which android apps are built. These building blocks are implemented as java classes. First of these building blocks is the Activity Class. This is the main class that users see when the run an
28 Sep 2014
Introduction to android platform

In this article we are going to explore android platform. Android is becoming more and more popular these day and a study indicates that there will be more than 500 billion apps downloaded till 2015. So if someone want a career in IT sector then they should know Mobile App Development. So in this series