본문 바로가기

나의 플랫폼/안드로이드

[Android] MacOS에서 갑자기 키보드가 동작을 하지 않을 때

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

MacOS에서 Android Studio를 사용할 때, 갑자기 키보드가 먹통이 되는 현상이 발생 되었다.

무어지???

 

원인을 검색해보니 특수문자를 지원해주는 'hold down key' 기능이 MacOS에서 자동적으로 바꿔서 생기는 일이다.

이 기능을 disable 시키는 방법은 terminal을 열어서 아래와 같이 입력만 하면 된다.

 

defaults write -g ApplePressAndHoldEnabled -bool false

참고하세요.

 

참고 : https://stackoverflow.com/a/53938438

 

Keyboard get disabled on Android Studio on Mac

While coding sometimes I have to press the undo keyboard shortcut longer than usual. Command+Z If I press them too long the keyboard get disabled and I have to restart Android Studio I press them...

stackoverflow.com