how to set up an Eclipse Environment for developing android applications?
1.Download Eclipse from the site: https://www.eclipse.org/downloads/
2.Install JDK, and set its system variables.
(1)download the lastest and stable JDK from the site:
(2)Configure system variables:
a. add two variables:
JAVA_HOTE = C:\Program Files\Java\jdk1.8.0_25
CLASS_PATH = .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar
Baidu could tell why they values should be set.
b. Modify the existing 'PATH' system variable:
PATH=.;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;.......
3.Download the lastest android ADT from this link:
http://developer.android.com/sdk/index.html#Other
4.Install the android plug-in in Eclipse.
please follow this link:http://developer.android.com/sdk/installing/installing-adt.html
Done.