Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add Eclipse Code Formatter file in Android Studio

Tags:

What I have:

I have a customised code format (.xml) file that my team wants to use in our project. This file includes predefined coding styles and conventions for java file.

What I want to do:

Now I have to add this formatter as a default code format, so that when click the shortcut of auto code format, the entire file will be formatted according to the the conventions defined in the formatter.

like image 803
Mohammad Arman Avatar asked May 11 '15 19:05

Mohammad Arman


People also ask

How do I use code formatter in Eclipse?

To format your whole script: Open the required file. Go to Source | Format Document or press Ctrl+Shift+F.

How can I format Android studio?

After opening the file we have to simply press the shortcut key as Ctrl+Alt+L to reformat the code in your file. With this key, the code in your file will be rearranged according to the code standards.


1 Answers

After a long 2days effort I managed the steps to integrate Eclipse Code Formatter in Android Studio

Here I am sharing step by step procedures to integrate Eclipse Code Formatter in Android Studio:

Step 1: Go to the Plugins Section of Android Studio. The easiest way is Click Shift twice and type Plugins. Now go to the plugins menu.

enter image description here

Step 2: Click on Browse Repositories

enter image description here

Step 3: Type Eclipse Code Formatter in the search box. Select it and Click Install button in the right section

enter image description here

Step 4: After successful installation you can see a blue Eclipse Icon in the top pen

enter image description here

Step 5: Now go to Settings >> Other Settings >> Eclipse Code formatter

Click the Browse button.

enter image description here

Step 6: Then select the Code Format XML file

enter image description here

Thats it

Any time you click the code formatting command your full code will be formatted according to the code formatter.

Code formatting shortcut:

Windows: Ctrl + Alt + L

Linux: Ctrl + Start + Alt + L

Mac: Option + Command + L

In case anyone want to see how the code formatter xml looks, you can check this one.

One of the mostly used code style used by google is here.

like image 198
Mohammad Arman Avatar answered Sep 24 '22 11:09

Mohammad Arman