无需 Android Studio 即可启动新的模拟器

Launch new emulators without the need of Android Studio

阅读此文档 here 有以下声明:

This tool is no longer supported. Instead use Android Studio to create AVDs and create projects, or use sdkmanager to view and install SDK packages from the command line.

于是产生了一个问题。有没有一种方法可以启动这些新的模拟器(可能通过命令行)而无需进入 Android Studio 然后从那里选择 AVD Manager 菜单?

这里应有尽有

emulator -avd <name>

check this

Blockquote Is there a way to launch the new emulators (possibly via command line) without having to enter Android Studio and then selecting the AVD Manager menu from there?

是的,您可以像往常一样通过命令行来完成。

例如,

C:\Development\Android\Sdk\tools\emulator.exe -netdelay none -netspeed full -avd Nexus_4_API_25

您可以通过命令行使用以下语法控制您的模拟器及其外观或行为。

这是你的模拟器${PATH_OF_YOUR_ANDROID_SDK}/tools/emulator

 emulator -avd <avd_name> [-<option> [<value>]] ... [-<qemu args>]

 emulator -list-avds

启动模拟器:

emulator -avd yourEmulatorName 

例如:emulator -avd Nexus_6_API_25

查看此 link 从命令行控制 Emulator