Android 앱 개발 올인원 패키지 Online
03. 안드로이드 Essential - Kotlin
# 02. 안드로이드 스튜디오 프로젝트 만들기 - 09 : 06 / 17 : 51
안드로이드 스튜디오 설정 창 단축키 | |
MAC | Command + ,(쉼표) |
Window | Ctrl + Alt+ s |
# 02. 안드로이드 스튜디오 프로젝트 만들기 - 10 : 03 / 17 : 51
옵션 | 옵션 설명 |
Automatically perform "Run" when Apply Changes fails | 변경 사항 적용이 실패할 경우, 자동으로 실행한다. |
Automatically perform "Run" when Apply Code Changes fails | 코드 변경 사항 적용이 실패할 경우, 자동으로 실행한다. |
# 02. 안드로이드 스튜디오 프로젝트 만들기 - 10 : 38 / 17 : 51
AVD Manager 들어가는 방법
# 코드를 아래와 같이 색상을 다르게 주고 싶다면, 안드로이드 스튜디오 테마를 변경해준다.
detail-from-a-to-z.tistory.com/24
[안드로이드 스튜디오] 테마 변경 - Material Theme UI
이렇게 코드를 기능, 타입별로 색상을 다르게 주고 싶다면, 안드로이드 스튜디오 테마를 변경해줘야한다. 기본적으로 제공되는 테마 외 다른 것을 원한다면 Material Theme UI를 다운받아 적용해줄
detail-from-a-to-z.tistory.com
# 코드 폰트 크기를 바꾸는 단축키 설정
detail-from-a-to-z.tistory.com/25
[안드로이드 스튜디오] 코드 확대
안드로이드 스튜디오엔 코드를 확대, 축소하는 단축키가 기본으로 지정되어 있지 않기 때문에 따로 설정해주어야 한다. # 안드로이드 스튜디오 단축키 설정 방법 1. File > Settings... 2. Keymap 을 클
detail-from-a-to-z.tistory.com
# 07. 메소드 A - 06 : 12 / 12 : 21
매개변수 목록 출력 단축키 | |
MAC | Command + p |
Window | Ctrl + p |
# 07. 메소드 A - 10 : 30 / 12 : 21
여러 줄 주석 단축키 | |
MAC | Command + / |
Window | Ctrl + / |
# Call requires API level 24 (current min is 23): java.util.Map#replace 오류 원인
detail-from-a-to-z.tistory.com/29
[안드로이드 스튜디오] Call requires API level 24 (current min is 23): java.util.Map#replace 오류
오류 원인 Call requires API level 24 (current min is 23): java.util.Map#replace 오류는 Map의 replace 함수는 안드로이드 API level 24이상부터 사용할 수 있는데 현재 프로젝트를 만들 때 최소 안드로이드 A..
detail-from-a-to-z.tistory.com