tags:

views:

199

answers:

2

Hi I am new android. I need to know how to install it in windows xp and which one is the best IDE and what are the requirements are needed. And I need to know how to develop an application in that platform.

+1  A: 

I'm a beginner too, except I've been using eclipse for java development for years. Starting Android development in eclipse was very easy, and the emulator installs, starts, runs, integrates well with eclipse - it's a very professional experience.

Install the latest "java developers" package of eclipse.

The Android Developers website is where you should start reading, and following instructions for installing the SDK then the development tools to eclipse.

Stephen Denne
+4  A: 

You need the following

You also need to install the Android ADT on Eclipse , here are the steps:

  1. Click on “Help” in Eclipse
  2. Click on “Install New Software”.
  3. Click on “ADD” , Type in a name of your choice, I just use “Android ADT”. In the source box provide the following URL “https://dl-ssl.google.com/android/eclipse”and click OK . Eclipse is going to query the address we provided and in a few moments it will provide us we a set of plugins, namely Android DDMS and Android Development Tools under Development Tools.
  4. Select the parent, i.e., “Development Tools” and click “Next”.
  5. Accept the Terms of service and continue.

You can follow the install procedure from the Android SDK page above or from a brief tutorial I wrote at DroolJunkie

Update : You may also use the following screen casts to help with installation (Source/Credits)

As for how to learn to develop on Android you can start by reading artilces and tutorials on developer.android.com and using Stackoverflow and Google. There are also a few good books available. Here are 3 I like:

Ravi Vyas