Saturday, May 3, 2014

Android Google Maps API V2 Run On Emulator and Run On API Level 10 or 9 or 8 or Android 2 3 3


Friday, December 7, 2012

Creating Your First Android Activity -- For Beginner


You’ve downloaded the SDK, installed Eclipse, and plugged in the plug-in. You’re now ready to start
programming for Android. Start by creating a new project and setting up your Eclipse run and debug
confi gurations.
Starting a New Android Project
To create a new Android project using the Android New Project Wizard:
1. Select File ➪ New ➪ Project.
2. Select the Android Project application type from the Android folder, and click Finish.
25

3. In the dialog that appears, enter the details for your new project. The
“Project name” is the name of your project fi le; the “Package name” specifi es its package; the
“Activity name” is the name of the class that is your initial Activity; and the “Application
name” is the friendly name for your application.


4. When you’ve entered the details, click Finish.
The ADT plug-in then creates a new project that includes a new class that extends Activity. Rather
than being completely empty, the default template implements “Hello World.” Before modifying the
project, take this opportunity to confi gure run and debug launch confi gurations.
Creating a Launch Confi guration
Launch confi gurations let you specify runtime options for running and debugging applications. Using
a launch confi guration you can specify the following:
❑ The Project and Activity to launch
❑ The emulator options to use
❑ Input/output settings (including console defaults)

Tuesday, December 4, 2012

Getting Started With Installing Android SDK and Install Android Plugin On Eclips IDE For Beginner

At first download and install Android SDK form Here
Or
From This Link: https://developer.android.com/sdk/index.html

Then Download Eclipse IDE from Here
Or
From This Link: http://eclipse.org/mobile/

Then Download JDK From Here

Or
From This Link: http://www.oracle.com/technetwork/java/javase/downloads/jdk7u7-downloads-1836413.html



After Download Eclipse & JDK. Install JDK  Then open Eclipse

Then Follow These Steps Below
!--------------------------------------------------------------------------------------------------------!

Installing the Eclipse Plugin

Android offers a custom plugin for the Eclipse IDE, called Android Development Tools (ADT). This plugin provides a powerful, integrated environment in which to develop Android apps. It extends the capabilities of Eclipse to let you quickly set up new Android projects, build an app UI, debug your app, and export signed (or unsigned) app packages (APKs) for distribution.
If you need to install Eclipse, you can download it from eclipse.org/mobile.
Note: If you prefer to work in a different IDE, you do not need to install Eclipse or ADT. Instead, you can directly use the SDK tools to build and debug your application.