-->

Monday 4 November 2013

Helloworld in Android

Hi Friends,
Ready For the Hello World in Android !!! First of all What you need to create First Program in android
1. Eclipse
2. ADT(Android Developer Tool)
3. SDK(Android Software Developer Kit)

Friend Here , You can have all these thing and set environment to develop android application or you can download android developer tool(bunch of whole these thing in one no need to download it separately) . You can download it from Here . When You download it you have to just run the Eclipse and you will get

Android Developer Tool

         Now  Follow the step as display in images

Then in next window will pop up which asking you to provide the application name, project name and package name. Package name Must be unique because which will be represent you application when you post it to Play.google.

Another Option is Minimum sdk requirement which tell that which minimum version of android is necessary to run you application and Target Sdk means in which you will you are developing and compiling the application. Then just go next next  because at this level you will not understand all these thing at same time..
but i will promise that you will know everything that you want to know about . 

Woh!!! we have completed our HelloWorld in android. To run you require emulator to set  which will be our next blog so ... have happy coding and have good day and yes sorry for my English and image . If you have any doubt then please comment below.


Monday 28 October 2013

MVC ANDROID



Hi Friends,
Today I am going to start blog about  the android . First We Start with Android basic so that any body can code in it .Only thing is that you need to know basic about the core java.

First We Understand the MVC pattern in android . First , If you don`t know MVC than I will give you some basic idea about MVC. MVC mean Model View Controller


1. Model Mean Kind of thing which bridge between View and Controller. Model generally represent the data which is store in the table . For example you are having address book in which where the actual data is stored.

2.View Mean Visual representation of model or data . For example user interface of the address book , such as textbox,label etc.

3.Controller Mean which is responsible to update the model data. For Example You are adding the one record into address book.



In Case on android We are having the same pattern . View part is handled by XML layout and Model part is handled by the SQLite database we can store the data. Controller Here we can say the java coding having responsible to update view by fetching stored data from model and display  on view.


I know it is boring theory ....And i even also believe that ,but it is necessary .
Following Image will give you a clear idea about the MVC in android . 
model view controller ,xml and slqlite and java
This is all about the MVC pattern . Fill Free to any suggestion and Any Tutorial You Want . In Next Session We will be creating our first Application in android . Happy Coding and Thank you.