For people who have not been exposed to Android development, it may be difficult to feel Android development, and for a while, we will learn the specifics of Android development, mostly in the face of it. NET programmer, take a look. NET programmers how to develop Android. Let's cut into this section.
工欲善其事, its prerequisite, below we are ready to build the environment for Android development, here are some of the tools developed
1. JDK Installation
JDK Download
Http://www.oracle.com/technetwork/java/javase/downloads/index.html
JDK has 32-bit and 64-bit, choose according to your own operating system
Environment Variables
After the JDK installation is complete, you need to configure the environment variables to prepare for eclipse use
1. Right-click My Computer-Properties---Advanced system settings---Environment variables, the interface is as follows
2. Add Java_home:c:\program files\java\jdk1.7.0_40 This is the JDK installation directory, my JDK is installed on the C drive
3. Added CLASSPATH:.; %java_home%\lib\tools.jar;%java_home%\lib\dt.jar;%java_home%\bin;
4. Path increase:;%java_home%\bin;
After the configuration is complete, open the cmd window, enter java-version, the following interface appears, indicating successful installation
2. Eclipse,android ADK
Eclipse and Android ADK can be downloaded from here
Http://yunpan.cn/cs8QbTHxdsjUB (extract code: 364A)
Download the post-decompression interface as follows:
In this way, the Android development environment has been built
. NET programmer play to Android development---(1) environment construction