developing the Android application process is generally divided into three steps:
1, create an Android project;
2. Define the controls contained in the application in the XML layout file;
3. Implement the business logic in Java code.
This article describes the first part, the creation of an Android project, the following steps:
1. Open Eclipse, click menu File→new→other, select Android→android Application project in the pop-up window,
;
2. Click Next, enter Application Name,project name,package Name and select Mini SDK (minimum version required to run the app) and target SDK (target version of the app).
3, click Next,creat Activity Page General default, then next, in the Configure Launcher icon page, if you need to customize the app's icon click the image file after the browser upload (default), click Next,
4, in creat activity page can tick create activity also can not tick, direct next to finish can complete.
Android Starter (i): Create Android Project