Training Program

  • Career Courses

    » ASP.NET | PHP | JAVA
    » Web Design | Software Testing | SEO
    » iPhone | Android | Blackberry

    More
  • College Campus Training

    » At Campus Training
    » Workshops
    » Seminars
    » Campus Recruitment

     

    More
  • Government Training

    » Government Employee Skill Upgradation Programs
    » Unskilled Employee Training
    » Training History with Government

     

    More
  • Corporate Training

    » Advanced Level Corporate Training
    » Online Training
    » Company Training

     

    More

Consulting with TOPS Technologies

  • Software Development

    » ASP.NET | PHP | JAVA
    » Web Design | Software Testing | SEO
    » iPhone | Android | Blackberry

    More
  • Software Testing

    » Functional Testing
    » Web Testing
    » Security Testing
    » Performance Testing

     

    More
  • Mobile Application Development

    » Government Employee Skill Upgradation Programs
    » Unskilled Employee Training
    » Training History with Government

     

    More
  • Back Office Support Services

    » Content Moderations
    » Spam Email Control
    » Keeping track of recent, pending, approved, completed orders

     

    More

Placement Services

  • Our Placed Students

    So far we have trained and placed 10000+ students and they also help us by guiding us in improving and adding relevant topics to our courses.

    More
  • Our Client Companies

    TOPS has tied up with several IT companies across different states for the placement of their students. TOPS has signed MOU's with 740+ IT companies across the nation.

     

    More
  • Our Placement Department

    We've developed a department to place our qualified students. This department is working only on placing our qualified students and students are very happy with that.

     

    More

Services

All our courses are designed by industry for the industry. Our board of advisors include experienced developers and faculties in ASP.Net, PHP, Java, Software Testing, SEO, Web Design, Iphone and Android. Furthermore because of our extensive industry connections we keep ourselves abreast of emerging technologies and include these courses. So far we have trained and placed 5000+ students and they also help us by guiding us in improving and adding relevant topics to our courses. So far we have trained and placed software developers, Software programmers, Software Testers, System Administrators, Business Analyst, Project Managers, Support Specialists.

  
How to Install the Android SDK on Windows XP

How to Install the Android SDK on Windows XP and Create an Application that Runs in the Android Emulator
This tutorial shows you how to download and install Android SDK to get you started developing Android applications.

1. Download and Install the Android SDK and Test the Emulator
2. Install Java
3. Install Eclipse
4. Install the ADT Plugin in Eclipse
5. Create Hello World Application

1. Download and Install the Android SDK and test the Emulator

1.

Create a folder called "android" in the drive C.
Goto http://code.google.com/android/download.html.
Click on the android_sdk_windows... link, download and save it to c:\android.

 

2.

Unzip downloaded file.

 

 

3.

Now, set your PATH environment variable by right click on My Computer, and select Properties. Under the Advanced tab, hit the Environment Variables button, and in the dialog that comes up, double-click on Path under System Variables. Add the full path to the tools/ directory to the path, in this case, it is: C:\android\android-sdk-windows-1.0_r1\tools. Then click OK , OK , OK.

 

 

4.

Click on Start > All Programms > Accessories > Command prompt and type emulator, then hit ENTER , in a couple seconds the emulator will appear, please wait when it's starting up.

 

 

5. Click on Browser button.

 

 

6. Click on the Menu button, then click on Go to ... Type in a website address you want to view and press ENTER, ex: http://androidcore.com

 

 

 

2. Install Java

 

 

1.

Goto http://developers.sun.com/downloads/

 

 

2.

Choose Java SE (JDK) 6 link.

 

 

3.

Click on the Download button

 

 

4.

Click on the Download button

 

 

5.

Select Platform, Language for your download, check into the box "I agree to ..." and then click on the button "Continue"

 

 

6.

Click on the file name (jdk-6u10-windows-i586-p.exe) to start to download the Java SDK

 

 

Save it to C:\android

 

 

7.

After it has finished downloading, you will have this file in your directory (C:\android). Double click on file that was downloaded to start install Java SDK.

 

 

Accept agreement. And click Next to start install.

 

 

3. Install Eclipse

Eclipse is a professional editor.

 

1.

Go to http://www.eclipse.org/downloads/ . Download and save it to drive C:\. The current version of Eclipse is 3.4.1

 

 

2.

After it has finished downloading, you will have this file in your directory (C:\). Unzip this file.

 

 

3.

Double-click on the file c:\eclipse\eclipse.exe to run Eclipse editor.

 

 

Click OK to Continue.

 

 

4. Install the ADT Plugin

The ADT (Android Development Tools) plugin includes a variety of powerful extensions that make creating, running, and debugging Android applications faster and easier.

 

 

1.

Start Eclipse.

If you are using a proxy, please go to Windows > Preferences > General > Network Connections, choose "Manual proxy configuration" and type your proxy address here. If you are using a direct internet connection, you do not need to do this step.

Click Help > Software Updates

 

 

2.

Choose "Available Software" tab, then click on the button "Add Site ..."

 

 

3.

Copy and paste this link into input box "Location": https://dl-ssl.google.com/android/eclipse/, click OK

 

 

4.

Back in the Available Software view, you should see the plugin. "Android Developer Tools", and "Android Editors" should both be checked. The Android Editors feature is optional, but recommended. Then click on the button "Install ..."

 

 

5.

Click on the button Next

 

 

6.

Check the "I accept the terms of the license agreements" and click Finish.

 

 

7.

Wait to Eclipse download the plugin

 

 

8.

Eclipse will ask to restart, click on the button Yes

 

 

9.

After restart, update your Eclipse preferences to point to the SDK directory:

1. Select Window > Preferences... to open the Preferences panel.


2. Select Android from the left panel. If you get a dialog says: "Could not find folder 'tool' inside SDK ...", just click on the button OK
3. For the SDK Location in the main panel, click Browse... and locate the SDK directory.
4. Click Apply, then OK.

 

5. Create Hello World Application


This will show you how to make the first simple Android application with Eclipse.

 

1. Click File > New > Other....

 

 

2. Click on Android Project and click Next.

 

 

3. Fill out the form and click Finish.

 

 

4. Change the code in HelloWorld.java to the following.

 

 
                    <p>package com.androidcore.hello;
                     
                     
                     
                    import android.app.Activity;
                     
                    import android.os.Bundle;
                     
                    
                    import android.widget.TextView;
                     
                     
                     
                    public class HellWorld extends Activity {
                     
                    /** Called when the activity is first created. */
                    
                     
                    @Override
                     
                    public void onCreate(Bundle savedInstanceState) {
                     
                    super.onCreate(savedInstanceState);
                     
                    
                    //setContentView(R.layout.main);
                     
                    TextView tv = new TextView(this);
                     
                    tv.setText("Hello, Android");
                     
                    
                    setContentView(tv);
                     
                    }
                     
                    }</p>
                     

 

 

 

5. Click on menu Run, choose Run Configurations.

 

 

6. Click on Android Application, fill in Name, Project. Click on the "Launch" choice, choose Activity.

Then click on button Run.

 

 

7. Once Android Emulator is booted up, your application will appear. When all is said and done, you should see something like this:

 

 

That's it - you're done!

 
Asp.net training institute   PHP training institute   Load Runner training institute   .NET training institute   MYSq training institutel   MsSql3 training institute   QTP training institute   Linux training institute   Ajax training institute   Silverlight training institute   Joomla training institute   selenium training institute   Drupal training institute   Sql Server 2005 training institute   PhpBB training institute   Mambo training institute   OSCommerce training institute   sugarCRM training institute   Zen Cart training institute  

Profile Courses Specialized Courses Students