The Top 8 Plugins for Android Studio

Share this article

Android Studio is now the official Google IDE designed for native Android application development. Based on JetBrains’ IntelliJ IDEA, it was first announced at Google I/O 2013 as the successor to Eclipse and was generally welcomed by the Android community. After a long beta phase, the final version was announced in December of last year.

Android Studio is a fully-featured development environment equipped with everything needed to develop Android applications for all devices, from smart watches to automobiles. There is always room for improvement and Android Studio offers support for third party plug-ins, and this article will list some of the most useful.

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 Keen for more? Valdio wrote a follow up post here.

Frequently Asked Questions (FAQs) about Android Studio Plugins

What are the benefits of using plugins in Android Studio?

Plugins in Android Studio enhance the functionality of the IDE, making it more efficient and user-friendly. They provide additional features that are not available in the default Android Studio setup. These features can range from code generation and formatting, debugging tools, to UI design aids. By using plugins, developers can streamline their workflow, reduce coding errors, and increase productivity.

How do I install a plugin in Android Studio?

To install a plugin in Android Studio, go to File > Settings (for Windows and Linux) or Android Studio > Preferences (for macOS). Then, select Plugins from the left pane. You can browse the plugins available in the Marketplace or install a plugin from disk by selecting the Install Plugin from Disk option. After installation, restart Android Studio to activate the plugin.

Are there any free plugins available for Android Studio?

Yes, there are many free plugins available for Android Studio. Some of the popular free plugins include CodeGlance, ADB Idea, and Key Promoter X. These plugins offer various features like embedded code minimap, Android debug bridge commands, and keyboard shortcut prompts, respectively.

Can I develop my own plugin for Android Studio?

Yes, you can develop your own plugin for Android Studio. The IntelliJ Platform SDK provides the necessary tools and documentation for developing plugins. However, it requires a good understanding of Java and the IntelliJ Platform architecture.

What is the role of the ADB Idea plugin in Android Studio?

The ADB Idea plugin provides a set of Android Debug Bridge (ADB) commands that help in speeding up the development and debugging process. These commands include uninstalling an app, killing an app, starting an app, restarting an app, clearing app data, and more. These commands can be accessed directly from the Find Action dialog.

How does the Key Promoter X plugin help in Android Studio?

The Key Promoter X plugin helps developers to learn essential keyboard shortcuts in Android Studio. Whenever a command is executed using a mouse click, this plugin shows a popup displaying the corresponding keyboard shortcut. This helps in improving coding speed and efficiency.

What is the use of the CodeGlance plugin in Android Studio?

The CodeGlance plugin embeds a code minimap similar to the one found in Sublime into the editor pane. It provides a quick overview of your code structure and allows you to navigate through your code easily.

How can I uninstall a plugin in Android Studio?

To uninstall a plugin in Android Studio, go to File > Settings (for Windows and Linux) or Android Studio > Preferences (for macOS). Then, select Plugins from the left pane. In the Installed tab, find the plugin you want to uninstall, right-click on it, and select Uninstall.

Can I use plugins in Android Studio to aid in UI/UX design?

Yes, there are several plugins available that can aid in UI/UX design in Android Studio. For example, the Zeplin and Avocode plugins allow you to generate style guides and assets automatically, making it easier to implement designs.

Are there any plugins that can help with version control in Android Studio?

Yes, there are several plugins that can help with version control in Android Studio. For example, the GitToolBox plugin enhances the built-in Git support with features like auto fetch, behind notifications, inline blame annotation, and more.

Valdio VeliuValdio Veliu
View Author

Valdio recently graduated in Computer Engineering. He is a mobile developer, who is passionate about mobile technologies and learning new things. He has worked with languages such as C, Java, php and is currently focused on Java, mobile and web development

android studiochriswGoogle Tutorials & Articlesintelijjava
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week