android eclipse常用配置

(1) 修改注释作者信息

 Window->Preference -> Java -> Code Style -> Code Templates -> Comments -> Types -> Edit

android eclipse常用配置_第1张图片

(2) 自定义模板 在window->preferences->java->editor->templates中设置。

android eclipse常用配置_第2张图片

Log.e("mylog","${word_selection}${}");${cursor}

然后输入log,按alt+/ 就会出现 Log.e("mylog","");

(3) 有时候ctrl+shift+f格式化后代码分行,可以控制每行的字数

windows--preferences--java--codestyle--formatter--edit--line wrapping--maximum line width 大概123

(4) 设置字体  

Windows--Preferences--Genneral--Appearance--Colors and Font--点击右侧的Basic--Text Font -- Courier New

Eclipse字体:Courier New    字形:常规      大小:12

 android eclipse常用配置_第3张图片

(5)XML文件每个属性占用一行

android eclipse常用配置_第4张图片

(6)不格式化注释

windows--preferences--Java->Code Style->Formatter 点击Edit 后在Tab上选择Comments,将General settings中的"Enable Javadoc comment formatting"前面的勾去掉就可以了.

android eclipse常用配置_第5张图片

(7)清理工程代码,格式化整个工程

windows--preferences--Java->Code Style->Clean Up  点edit,将FormatSourceCode勾上,然后点source--clean up

android eclipse常用配置_第6张图片

(8)自动提示

window--preference--java--editor--content assist,页面最下面倒数第二行那个框里修改成.abcdefghijklmnopqrstuvwxyz

你可能感兴趣的:(android eclipse常用配置)