0

我已经下载了包含http://developer.android.com/sdk/index.html的所有内容的 ADT Bundle 。当我创建 Android Applicatio 并且我想运行时,我得到了这样的结果。如何让它运行。

[2012-11-21 10:18:00 - Test2] ------------------------------
[2012-11-21 10:18:00 - Test2] Android Launch!
[2012-11-21 10:18:00 - Test2] adb is running normally.
[2012-11-21 10:18:01 - Test2] Performing com.example.test2.MainActivity activity launch
[2012-11-21 10:18:01 - Test2] Automatic Target Mode: launching new emulator with compatible AVD 'Test'
[2012-11-21 10:18:01 - Test2] Launching a new emulator with Virtual Device 'Test'
[2012-11-21 10:18:01 - Emulator] WARNING: Data partition already in use. Changes will not persist!
[2012-11-21 10:18:01 - Emulator] WARNING: Cache partition already in use. Changes will not persist!
[2012-11-21 10:18:01 - Emulator] Failed to allocate memory: 8
[2012-11-21 10:18:01 - Emulator] 
[2012-11-21 10:18:01 - Emulator] This application has requested the Runtime to terminate it in an unusual way.
[2012-11-21 10:18:01 - Emulator] Please contact the application's support team for more information.
4

1 回答 1

0

在运行您的 android 应用程序时,它将加载到新的模拟器中。我们不能用单个实例运行多个模拟器。Goto->Task Manager->adb(in running processes)->give end task->重启你的eclipse并运行你的模拟器。

数据分区已在使用:此问题基于您的系统 RAM 大小和模拟器内存​​大小(在创建 AVD 时分配内存大小)。如果两个模拟器运行在同一个实例中,就会出现内存错误。

于 2014-02-26T12:35:46.970 回答