阻止Android Studio包装方法和构造函数

时间:2014-08-11 23:49:24

标签: android formatting android-studio

如何阻止Android Studio包装方法行和构造函数?

这就是Android Studio目前的工作方式:

一个班级

public class Foo {

    public Foo(Context context, AttributeSet attrs) { super(context, attrs); }
}

方法

public static void doSomething(Foo foo) { foo.doWork(); }

这就是我想要的:

一个班级

public class Foo {

    public Foo(Context context, AttributeSet attrs) { 
        super(context, attrs); 
    }
}

方法

public static void doSomething(Foo foo) { 
    foo.doWork(); 
}

2 个答案:

答案 0 :(得分:8)

转到File → Settings...继续前进。

enter image description here

你想要的选项应该是不言自明的。

答案 1 :(得分:2)

更新

根据稳定的android-studio版本3.0

转到:

  

设置 - >编辑 - >一般 - >代码折叠

你会发现方法主体来关闭所有方法的正文,单行方法将它包装在oneline中。

UNCHECK两个。

现在重新启动android-studio OR ,然后重新打开它。

enter image description here