自动间距的键盘快捷键

Keyboard shortcut to auto spacing

在 Android Studio 上有没有办法做到这一点:

for(int i=0;i<SIZE;i++){
    //something..
}

转换成这样:

for (int i = 0; i < SIZE; i++) {
    //something..
}

通过键盘快捷键或其他方式(手动)?

您可以使用以下快捷方式重新格式化代码。

Windows: Ctrl + Alt + L.

Mac: 选项 + 命令 + L

注意:所有快捷方式都可以在settings中找到,在keymap

如果您在 Windows / Linux 上使用 Android studio,请使用:Ctrl + Alt + L

如果您在 MAC OS 上使用它,请使用 Option + Command + L