Googleunveiled its new Android development tool, Android Studio, at the I/O 2013 conference and tried it over the weekend. There is a need to
in the http://developer.android.com/sdk/installing/studio.html Download, the current version number is V0.1. Official explanation:Android Studio is a
New Android development environment based on IntelliJ idea. Similar to Eclipse with the ADT Plugin.
Android Studio and Eclipse+adt are still very similar, so it's no difficulty for eclipse to move past.
Android Studio is based on IntelliJ idea, in addition to the IntelliJ feature, Android Studio also offers:
- Build support based on Gradle;
- Android-specific refactoring and high-speed repair;
- Tip tool to better control capture of program performance, usability, version number compatibility, and other issues;
- Support Proguard and application signature function;
- Comes with a layout editor that allows you to drag and drop UI components, preview layouts on multiple screen configurations, and more.
Android Studio provides windows, Mac OS X, and Linux version numbers that users choose to download based on their system.
Download finished installation Please refer to: http://developer.android.com/sdk/installing/studio.html#Installing
After installation, open Android Studio,
The first time you use New project, you may report:
Your Android SDK is an out of date or is missing templates. Please ensure is using the SDK version or later.
This requires you to use the new SDK, which was used by the Android SDK, ADT, etc. in Eclipse, and now only needs to go into the Eclipse Update SDK. Or find the SDK Manager.exe upgrade under the SDK folder.
After the upgrade, set up the SDK through Android Studio for example, configure--> project Defaults----project Structure, for example, by using the following path
You are ready to create a new project. New Project:
Settings icon:
Choose different activity, and the above steps are the same as eclipse.
The new project structure, such as the following, is a simple way to create project.
References:
http://developer.android.com/sdk/installing/studio.html;
/*** @author Zhang Xingye * http://blog.csdn.net/xyz_lmn* My Sina Weibo:
@ Zhang Xingye tbow* Android Development Advanced Group:241395671*/
Android Studio First Experience