排名前8位的Android Studio插件

ygw3 9年前

1. H.A.X.M (Hardware Accelerated Execution Manager)

H.A.X.M is the best way for developers who use the Android Emulator to execute their applications faster. H.A.X.M provides hardware acceleration for Android SDK emulators on Intel systems. It uses Intel Virtualization Technology (Intel VT) built on top of virtualization hardware VT-X. This means processors that support virtualization, giving the fastest way to run applications on simulated Android environments. I think that H.A.X.M is the most useful plugin that an Android developer can have to run the latest Android version on the emulator as fast as possible.

To install H.A.X.M

Open the Android SDK Manager, select the "Intel x86 Emulator Accelerator (HAXM installer)", accept the license and install the package.

HAXM Install

This process has downloaded the package but not installed H.A.X.M. To finish the installation go to the SDK path shown in the image above C:\Users\Administrator\AppData\Local\Android\sdk\ (This installation is on a Windows machine) and try to find the download folder. Mine was C:\Users\Administrator\AppData\Local\Android\sdk\extras\intel. Open the installation folder Hardware_Accelerated_Execution_Manager, click the executable intelhaxm-android and continue the installation. After this installation you are ready to use the emulator.

HAXM exe

2. Genymotion

Genymotion

Genymotion is the ultimate tool for testing your Android application and enables you to run custom versions of Android. It's built for execution inside VirtualBox and equipped with the complete set of sensors and features needed to interact with a virtual Android environment. With Genymotion, you can test your Android applications on a wide range of virtual devices for development and its emulators are a lot faster than the default emulator.

Every developer who wants to make sure their application runs smoothly on every supported device and has trouble troubleshooting specific device errors should make use of this great plugin.

To install Genymotion follow our previous tutorial .

3. Android Drawable Importer

Drawable add

Import Drawables

To adapt to all Android screen sizes and densities, each Android project contains the drawable folder. Any developer with experience of Android development knows that to support all the screen sizes you must import different drawables for each screen type. The Android Drawable Importer makes this job easier. It reduces the effort needed to import scaled images into the Android project. Android Drawable Importer adds an option to import drawables in different resolutions or scale a specified image to a defined resolution. This plugin speeds up every developer's work with drawables.

To install Drawable Importer:

Install Drawable Importer

4. Android ButterKnife Zelezny

Android ButterKnife is a "View Injection Library for Android". It gives a better view of code and makes it more readable. ButterKnife allows you to focus on the logic rather than glue code for finding views or adding listeners. Programing with ButterKnife you have to perform injection on arbitrary objects, they take this form:

@InjectView(R.id.title) TextView title;

If you have one or two injections, writing them is not a problem, but if you have more, you need to refer to all the layout XMLs to write them in the source file.

Android ButterKnife Zelezny is a Android Studio Plugin for generating ButterKnife injections from selected layout XMLs in activities, fragments or adapters. The plugin will provide the fastest way to generate your XML object injections.

Here is an example of how code looks before using Android ButterKnife:

Code Before

And after:

Code After

To install ButterKnife Zelezny:

Install ButterKnife Zelezny

5. Android Holo Colors Generator

To develop Android applications you should need a great design and layout. The Android Holo Colors Generator is the easiest way to customize your Android application, matching your own preferences. Android Holo Colors Generator is a plugin that allows you to create Android layout components from your own colors for your application. This plugin will generate all the necessary assets associated with XML drawables and styles to use in your project.

To install Holo Colors Generator:

Install Holo Colors Generator

6. Robotium Recorder

Robotium Recorder is a test automation framework for testing native and hybrid mobile applications on emulators and Android devices. With Robotium Recorder it's possible to record test cases and user actions. You can view functions of system and user test scenarios on different Android activities.

With Robotium Recorder you can see what's happening with your application when it runs on your device, if it's working as expected or if it reacts properly to user actions. For everyone who is looking to develop stable Android applications this plugin is helpful for thorough testing.

Here is an example of my application recorded on Robotium Recorder:

Robotium example

To install Robotium Recorder visit the official page and in the Installation section choose the version of Robotium Recorder based on your Operating System.

7. jimu Mirror

Android Studio is equipped with a visual layout editor, but a static preview of the layout might not be enough. With a static preview it is not possible to preview animation, colors and touch zones, so jimu Mirror is a plugin that allows you to test your layout on the fly on a real device. Jimu Mirror gives you on-device previews of Android layouts that update as you code. This plugin offers a realistic context before you start coding.

To install jimu Mirror:

Install jimu Mirror

8. strings-xml-tools

Strings-xml-tools is a small but useful plugin that can be used to manage the string resources in Android projects. It provides basic operations for sorting entries in Android localization files and adding missing strings. The plugin is limited but if your application has a large number of string resources this plugin might be helpful.

To install Android Strings.xml tools:

Android Strings.xml tools

What Android Studio plugins have you tried? Let me know if the comments below.