码迷,mamicode.com
首页 > 移动开发 > 详细

在Eclipse中格式化Android代码

时间:2016-10-30 13:49:15      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:菜单   顺序   clip   开发   files   android开发   pre   javadoc   orm   

我们用Eclipse做Android开发的时候,可以导入Google提供的profile文件,这样每次“Ctrl+Shift+F”的时候,IDE就能够按照官方的规范来进行代码格式化。

下载

Eclipse用的profile文件在GitHub上的这个位置:

https://github.com/android/platform_development/tree/master/ide/eclipse

Java用的profile文件有两个:

  • android.importorder:用来自动调整import语句的顺序;
  • android-formatting.xml:用来格式化代码。

附件下载:http://files.cnblogs.com/files/duxiuxing/eclipse_android_profile.zip

导入

  1. Eclipse主菜单Window > Preferences,打开Preferences窗口;
  2. 在“Java > Code Style > Formatter ”中导入android-formatting.xml;
  3. 在“Java > Code Style > Organize Imports ”中导入android.importorder。

技术分享

优化设置

建议1:不限定每行注释的最大长度

如果项目有在使用Javadoc,建议不要限定每行注释的最大长度,以免因为自动换行而破坏文档的排版。

设置步骤如下:

  1. 打开Profile‘Android’的编辑窗口;
  2. 在Comments页,把Maximum line width for comments设置成999:
    技术分享

建议2:不限定每行代码的最大长度

设置步骤如下:

  1. 打开Profile‘Android’的编辑窗口;
  2. 在Line Wrapping页,把Maximum line width设置成999:
    技术分享 

在Eclipse中格式化Android代码

标签:菜单   顺序   clip   开发   files   android开发   pre   javadoc   orm   

原文地址:http://www.cnblogs.com/duxiuxing/p/6012383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!