up vote 13 down vote favorite
10
share [g+] share [fb]

Android Code Style Guide defines "Android Code Style Rules".
To conform to these rules one have to change quite a number of settings of the Java Code Formatter (Window->Preferences->Java->Code Style->Formatter) default profile (in Eclipse IDE).

Did anyone manage to configure the formatter to follow the "Android Code Style Rules" already?
If yes, please export the Formatter profile and publish to be used by community.

PS: I've tried to do this myself but I've found that there are too many formatter options available, and most of them are not mentioned in the Code Style Guide :-(

link|improve this question
feedback

5 Answers

up vote 10 down vote accepted

There are pre-made formatter rules available from the platform/development.git repository. So you can simply import android-formatting.xml and android.importorder as mentioned here.


June 15, 2011 - It appears that the files in the repository are out of date and no longer correctly match the current Android Code Style Guidelines.

link|improve this answer
Thank you, kroimon, very much! This is exactly what I was dreaming of :-) - these are "live" documents that continue improving as the Android ecosystem matures. – yvolk Mar 23 '10 at 10:26
So what are the new code style guidelines? Where can we find them? – kaciula Dec 6 '11 at 7:18
feedback

On a related note, here's how developers around Google keep their various Eclipse instances all in agreement: Workspace Mechanic for Eclipse

link|improve this answer
feedback

I think personal or team preferences vary to much to globally enforce a coding style. So every body should deploy his project specific coding style.

link|improve this answer
2  
I agree, but it's much easier to start from the "globally enforced code style rules" and change them only in those areas that are really important to the person or team, comparing to starting from "as is" and then trying to figure out how far this state is from "globally inforced code style rules"?! – yvolk Mar 20 '10 at 13:24
feedback

The link in kroimon's answer to android formatter rules is broken. Here is the correct one.

link|improve this answer
feedback

Sync the source code according to these instructions. The formatting guidelines are in the file development/ide/eclipse/android-formatting.xml. You can import it with Eclipse.

Menu bar -> Window -> Preferences -> Java -> Code Style -> Formatter -> Import

Point it to the path of the android-formatting.xml

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.