ICS 模拟器未加载
我正在尝试使用 ICS (Android 4.0) 操作系统运行 Android 模拟器,但在快速四核机器上等待 15 分钟后,它仍然没有执行任何操作。我知道它正在模拟arm cpu,因此它很慢 - 但这甚至还没有离开加载屏幕!有人设法让它运行吗?有什么建议吗?
I'm trying to run the Android emulator with the ICS (Android 4.0) OS but after a 15 minute wait on a fast quad core machine, it's still not doing anything. I understand it's emulating the arm cpu, hence it's slow - but this hasn't even gotten off the loading screen yet! Has anyone managed to get it to run? Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试在没有
从快照启动
功能的情况下启动从命令行启动我的一些AVD,
Gives
可能与问题相关,也可能不相关(?),但基本上在没有快照的情况下启动会启动模拟器。
我将 Android SDK 升级到 4.0 后发生了这种情况
Try launching without the
Launch from snapshot
featureLaunching some of my AVD's from command line with
Gives
that may or may not be related to the problem(?), but basically launching without the snapshot starts up the emulator.
This happened after I upgraded to Android SDK to 4.0
我的解决方案是手动启动模拟器,但使用 Target 2.2,假设使用 API 级别 8,那么您的项目将轻松加载到模拟器上。
My solution is the starting Emulator manually but with Target 2.2., let's say with API level 8, then your project will be easily loaded on Emulator.
我确保关闭“从快照加载”。我的仍然无法加载。我现在正在进行大约 1 小时,但仍然坐着
I made sure to turn off "Load from Snapshot". And mine will still not load. I am going on about an 1 hour now and still sitting
就我而言,我通过执行
$ emulator-arm -avd your_avd_name
成功获得了 ICS 模拟器,同时从 eclipse 启动(即通过emulator.exe
而不是emulator -arm.exe
) 始终失败。In my case, I succeeded to get ICS emulator by executing
$ emulator-arm -avd your_avd_name
whereas launching from eclipse (i.e. going throughemulator.exe
instead ofemulator-arm.exe
) fails consistently.