How do I restart an android emulator?

后端 未结 12 1031
执念已碎
执念已碎 2021-01-31 14:56

I\'m basically trying to do this: Changing the Android emulator locale automatically

Everything works up until \'start\'. the emulator starts to boot but keeps loading

相关标签:
12条回答
  • 2021-01-31 15:48

    you can restart the emulator from adb shell, start the emulator and also adb shell in the terminal.

    start Starts (restarts) an emulator/device instance.
    stop Stops execution of an emulator/device instance.

    0 讨论(0)
  • 2021-01-31 15:49

    In Android Studio go to:

    1. Tools > Android > AVD Manager
    2. Select your emulator device
    3. Click "Wipe data"
    0 讨论(0)
  • 2021-01-31 15:49

    you can try

    emulator @avd_name -no-snapshot-load
    

    it will clean load the device it worked for me.

    0 讨论(0)
  • 2021-01-31 15:50

    In my case, a cold boot was required after the emulator got stuck. It can be found in the Android Virtual Device Manager.

    0 讨论(0)
  • 2021-01-31 15:54

    To start/stop or restart emulator follow these steps:

    using telnet on windows machine

    o localhost 5554

    avd start start

    or

    avd start restart

    or

    avd stop

    0 讨论(0)
  • 2021-01-31 15:54

    in eclipse in the top most right u will find DDMS go i there, left side you will find Devices and in that in the last you will find a triangle downwards press that in that you will find Reset adb.

    0 讨论(0)
提交回复
热议问题