Android Studio 单独启动安卓模拟器教程
前提条件
- 已安装 Android Studio 并完成基础环境配置
- 已通过 AVD Manager 创建至少一个虚拟设备(AVD)
- 确保已安装 Android Emulator 组件(在 SDK Tools 中勾选)
通过命令行启动
定位 emulator.exe 路径
默认路径示例:
# Windows 系统
C:\Users\[用户名]\AppData\Local\Android\Sdk\emulator\emulator.exe
# MacOS/Linux 系统
~/Library/Android/sdk/emulator/emulator
获取 AVD 名称列表
- 执行命令查看所有设备:
emulator -list-avds
# Windows 系统
emulator.exe -list-avds
- 物理存储位置:
- Windows:
C:\Users\[用户名]\.android\avd
- MacOS:
~/.android/avd
启动指定设备
emulator -avd [AVD名称] -netdelay none -netspeed full
# Windows 系统
emulator.exe -avd [AVD名称] -netdelay none -netspeed full
示例:emulator.exe -avd Pixel_7_Pro_API_34
使用启动脚本简化操作
Windows
直接在桌面新建快捷方式,修改属性目标地址为下面的:
# 查看所有设备
C:\Users\[用户名]\AppData\Local\Android\Sdk\emulator\emulator.exe -list-avds
# 启动模拟器设备
C:\Users\[用户名]\AppData\Local\Android\Sdk\emulator\emulator.exe -avd [AVD名称] -netdelay none -netspeed full
MacOS/Linux
- 新建
start_emulator.sh
文件 添加执行权限:
chmod +x start_emulator.sh
脚本内容:
#!/bin/bash ~/Android/Sdk/emulator/emulator -avd [AVD名称] &
