SMALL
Android Studio에서 유용한 단축키를 소개하겠습니다. Android Studio는 IntelliJ IDEA 기반으로, 대부분의 단축키가 IntelliJ와 유사합니다. 사용하는 운영체제에 따라 단축키가 다를 수 있습니다.
- 블록 주석 처리/해제 (Block Comment)
- Windows/Linux:
Ctrl
+/
(라인 주석) 또는Ctrl
+Shift
+/
(블록 주석) - macOS:
Cmd
+/
(라인 주석) 또는Cmd
+Shift
+/
(블록 주석)
- Windows/Linux:
- 코드 자동 정렬 (Reformat Code)
- Windows/Linux:
Ctrl
+Alt
+L
- macOS:
Cmd
+Option
+L
- Windows/Linux:
- 코드 자동 완성 (Code Completion)
- Windows/Linux:
Ctrl
+Space
- macOS:
Cmd
+Space
- Windows/Linux:
- 파일 간 빠르게 이동 (Navigate Between Files)
- Windows/Linux:
Ctrl
+Tab
- macOS:
Cmd
+Tab
- Windows/Linux:
- 메소드 간 빠르게 이동 (Navigate Between Methods)
- Windows/Linux:
Alt
+Up/Down
- macOS:
Cmd
+Up/Down
- Windows/Linux:
- 빠른 검색 (Search Everywhere)
- Windows/Linux:
Shift
두 번 연속으로 누름 - macOS:
Shift
두 번 연속으로 누름
- Windows/Linux:
- 코드 라인 이동 (Move Line Up/Down)
- Windows/Linux:
Ctrl
+Shift
+Up/Down
- macOS:
Cmd
+Shift
+Up/Down
- Windows/Linux:
- 변수 이름 일괄 변경 (Rename)
- Windows/Linux:
Shift
+F6
- macOS:
Shift
+F6
- Windows/Linux:
- 최근 파일 열기 (Recent Files)
- Windows/Linux:
Ctrl
+E
- macOS:
Cmd
+E
- Windows/Linux:
- 실행 및 디버그
- 실행 (Run):
Shift
+F10
(Windows/Linux),Ctrl
+R
(macOS) - 디버그 (Debug):
Shift
+F9
(Windows/Linux),Ctrl
+D
(macOS)
- 실행 (Run):
이 단축키들은 Android Studio를 보다 효율적으로 사용하는 데 도움이 됩니다. 개발 환경에 따라 단축키 설정을 조정할 수도 있으니, File
> Settings
(Windows/Linux) 또는 Android Studio
> Preferences
(macOS)에서 단축키를 확인하고 필요에 따라 변경할 수 있습니다.
'IT.모바일 > 배움' 카테고리의 다른 글
DART 예외 Exception 처리 (0) | 2023.12.11 |
---|---|
Dart에서 클래스 캡슐화와 오류 처리 기법 (0) | 2023.12.05 |
생성자 스타일 Named / Positional parameter 선택적 매개변수 (0) | 2023.12.01 |
Dart lowerCamelCase / static const / 생성자 ? ?? / required / named positional parameter | DART 언어 (1) | 2023.12.01 |
클래스와 상속 super (0) | 2023.11.29 |
댓글