Easy Tutorial
❮ Android Tutorial Contents Java Different Of String Stringbuffer Stringbuilder ❯

1.2.1 Developing Android Apps with Eclipse + ADT + SDK

Category Android Basic Tutorial

1. Preface

Here we have two options to choose from, either directly using the packaged ADT Bundle for developing Android or configuring it ourselves. Since Google has abandoned the update of ADT and the official website has also removed the download link, here we provide the latest version of the ADT Bundle before Google gave up the update for everyone to download!


2. Directly Using the Packaged Eclipse

32-bit version: adt-bundle-windows-x86-20140702.zip (Baidu Cloud) 64-bit version: adt-bundle-windows-x86_64-20140702.zip (Google link) Download and unzip, then jump directly to 4. to create a Hello World project!


3. Configuring Eclipse + ADT + SDK Yourself

You can download Eclipse from the official Eclipse website: Eclipse Official Download and SDK and ADT can be downloaded from AndroidDevTools: AndroidDevTools Official Website This provides us with many tools related to Android development, and there is no need for scientific Internet access, a must-have development website! Be sure to bookmark it! There may be some issues between different versions of configurations! The author uses an old version (very old), and those who need it can also download it: Eclipse: eclipse-jee-helios-win32.zip ADT: ADT-15.0.0.zip SDK: android-sdk-windows.rar The construction process is as follows: 1. Unzip Eclipse: Find eclipse.exe in the unzipped folder and run it, set the location where the project code is stored (workspace) after running 2. ADT configuration: Click the menu bar in order: help -> Install new software -> Add -> Local... -> Select the folder after downloading and unzipping ADT -> accept -> Restart Eclipse -> Check if the Android icon appears on the menu bar PS: There may be a warning during this period, just ignore it~ 3. SDK unzip and configuration: Click the menu bar in order: windows -> Rreferences -> Android -> Select the unzipped SDK package -> OK -> Open and re-verify 4. Create AVD (Android emulator): Click the menu bar in order: Phone icon -> New -> Select the system version -> Skin screen resolution -> Set the size of the SD card -> Complete -> Start ! PS: The first time you start AVD may be very slow, so you need to wait~


4. Creating and Running the First Program Hello World Project

1. New -> Android App Project If you can't find it, you can go to Other -> android to find it, it's the same: 2. Then enter the project information in order: 3. Run the created program 4. See the running effect on the emulator:


5. Analysis of the Project Directory Structure

Let's first take a look at our project directory diagram:

❮ Android Tutorial Contents Java Different Of String Stringbuffer Stringbuilder ❯