IDEA 很好用,但是它的格式化后的风格真不是我喜欢的. 如果一行的代码写的太长,如:
if(a.aMethod() && a.bMethod && a.cMethod && a.xxxxxxxxMethod && b.cMethod) {
}
我设置了行长度边界,格式化时,超出长度自动换行.然后可能就给我换成这样了:
if(a.aMethod() && a.bMethod && a.cMethod && a.xxxxxxxxMethod && b
.cMethod) {
}
甚至这样:
if(a.aMethod() && a.bMethod && a.cMethod && a.xxxxxxxxMethod && b.cMethod
){
}
我记得 Eclipse 可以这样的:
if(a.aMethod() && a.bMethod && a.cMethod
&& a.xxxxxxxxMethod && b.cMethod) {
}
不知道 IDEA 能不能设置成这种 Eclipse 风格的格式化??
1
dozeboy 2017-12-15 18:28:56 +08:00 2
我在 Android Studio 上都是直接导入下面文件
https://github.com/aosp-mirror/platform_development/blob/master/ide/intellij/codestyles/AndroidStyle.xml 不知道 IDEA 能不能用 |
2
humpy 2017-12-15 18:31:17 +08:00 2
File | Settings | Editor | Code Style | Java > Wrapping and Braces > Binary expressions [Wrap if long]
|
3
qinxi 2017-12-15 19:10:12 +08:00 1
apply plugin: 'com.github.sherter.google-java-format'
|