안드로이드 에뮬레이터 홈버튼, 상태바 먹통 해결

Date
Tags
android
emulator
error
부가 설명
분류
android device

해결방법1

  • Cold Boot Now 시키고 나서는 바로 해결됨.
notion image

해결방법2

  1. Enable the USB debugging on your phone, and connect to a PC
  1. Run Setup Wizard by adb and wait until it appears, but do nothing on your phone
    1. $ adb shell am start -n 'com.google.android.setupwizard/.SetupWizardActivity'
      If it's can't start, because there's missing intent, you should run this:
      $ adb shell am start -n 'com.google.android.setupwizard/.SetupWizardTestActivity'
  1. Set the setup complete flag:
    1. $ adb shell settings --user 0 put secure user_setup_complete 1
  1. Restart phone
    1. $ adb reboot