本文介绍了Android Studio-更改默认代码样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我习惯于以这种方式编写代码:
I'm used to write code in a such way:
private String blabla()
{
return "bla";
}
但是Android Studio已针对以下代码进行了调整:
But Android Studio is adjusted for this code:
private String blabla() {
return "bla";
}
问题:如何为我更改此选项?
Question: how can I change this option for me?
推荐答案
转到文件"->设置".
Go to File -> Settings.
然后在对话框中,单击编辑器->代码样式-> Java->包装和大括号选项卡,然后可以调整braces placement
Then in dialog, Editor -> Code Style -> Java -> Wrapping and Braces tab, then you can adjust braces placement
记住要应用"您的更改.
Remember to "Apply" your changes.
这篇关于Android Studio-更改默认代码样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!