Android AVD仿真器失控CPU。固定?其他人有同样的问题吗?

时间:2015-05-24 13:14:04

标签: android android-studio android-emulator

Ubuntu 14.04 LTS 64 bit上的

Android Studio 1.2.1.1 都完全更新。

当运行一个Emulator CPU时,4x运行起来非常困难,大约几周前升级前Emulator次。似乎每个RAM使用的Emulator比以前更多Linux。在计算机过载和无响应之前,最多只能运行3 function changeLink(link) { /* this changes the link and plays the radio*/ var radio= document.getElementById("radio"); radio.src = link; radio.play(); } function jsonLoad() { var xmlhttp = new XMLHttpRequest(); var url = "playList.txt"; xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { var myArr = JSON.parse(xmlhttp.responseText); readJSON(myArr); } } xmlhttp.open("GET", url, true); xmlhttp.send(); } function readJSON(obj) { var list = "<ui>"; for (var i = 0; i < obj.length ; i++) { list += "<li><a href='javascript:changeLink(" +"\"" + obj[i].radioLink + "\"" +");'>" + obj[i].name + "</a></li>"; } list += "</ui>"; document.getElementById("radioLoad").innerHTML = list; } ,之后至少可以运行8个。

我检查过以确保所有必需的<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title> My Radio Player</title> <script src="Script.js"></script> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body onload="jsonLoad()"> <p>This is the link that i will change his property</p> <audio id="radio" src="#" controls autoplay preload="auto" ></audio> </audio> <br> <p id="radioLoad"> </p> </body> 库都在计算机上。

将Android Studio上的错误提交为:

  

Issue 173578:自更新Android SDK工具版本24.2后运行AVD仿真器时的竞争条件

刚刚启动UI调优(再次),这个问题让我花费了很多时间,因为我无法打开许多模拟器来检查UI。

其他有相同或类似问题的人?如果是这样的错误报告。

任何人都知道修复?

0 个答案:

没有答案