我刚刚在我的OSX(10.7.4)上安装了Android SDK(修订版20.0.3),因为我想运行Android Emulator只是为了使用Android浏览器测试我的基于Web的移动应用程序。
我下载了SDK,运行了包更新管理器等,然后通过GUI设置了一个2.2的Android虚拟设备,我可以成功启动模拟器,但它似乎根本不响应任何输入。我点击UI触摸屏或键盘/主页/菜单按钮等,Android模拟器只是没有响应。我甚至无法打开浏览器或做任何事情。任何人都可以提出问题可能是什么?
任何帮助都将不胜感激。
答案 0 :(得分:-1)
您是否尝试过使用Zepto.js代替标准Javascript库而不是普通的Jquery.js文件?
它的响应速度要快得多,因为它是一个较轻的软件包,可以在缓慢的Android模拟器上运行。
要测试点击事件并加快点击响应,请在fwebdev中添加fastclick.js
如果两者都不起作用,请尝试Dolphin Browser:https://play.google.com/store/apps/details?id=mobi.mgeek.TunnyBrowser&hl=en
https://gist.github.com/2168307
//======================================================== FASTCLICK
function FastButton(element, handler) {
this.element = element;
this.handler = handler;
element.addEventListener('touchstart', this, false);
};
FastButton.prototype.handleEvent = function(event) {
switch (event.type) {
case 'touchstart': this.onTouchStart(event); break;
case 'touchmove': this.onTouchMove(event); break;
case 'touchend': this.onClick(event); break;
case 'click': this.onClick(event); break;
}
};
FastButton.prototype.onTouchStart = function(event) {
event.stopPropagation();
this.element.addEventListener('touchend', this, false);
document.body.addEventListener('touchmove', this, false);
this.startX = event.touches[0].clientX;
this.startY = event.touches[0].clientY;
isMoving = false;
};
FastButton.prototype.onTouchMove = function(event) {
if(Math.abs(event.touches[0].clientX - this.startX) > 10 || Math.abs(event.touches[0].clientY - this.startY) > 10) {
this.reset();
}
};
FastButton.prototype.onClick = function(event) {
this.reset();
this.handler(event);
if(event.type == 'touchend') {
preventGhostClick(this.startX, this.startY);
}
};
FastButton.prototype.reset = function() {
this.element.removeEventListener('touchend', this, false);
document.body.removeEventListener('touchmove', this, false);
};
function preventGhostClick(x, y) {
coordinates.push(x, y);
window.setTimeout(gpop, 2500);
};
function gpop() {
coordinates.splice(0, 2);
};
function gonClick(event) {
for(var i = 0; i < coordinates.length; i += 2) {
var x = coordinates[i];
var y = coordinates[i + 1];
if(Math.abs(event.clientX - x) < 25 && Math.abs(event.clientY - y) < 25) {
event.stopPropagation();
event.preventDefault();
}
}
};
document.addEventListener('click', gonClick, true);
var coordinates = [];
function initFastButtons() {
new FastButton(document.getElementById("fastclick"), goSomewhere);
};
function goSomewhere() {
var theTarget = document.elementFromPoint(this.startX, this.startY);
if(theTarget.nodeType == 3) theTarget = theTarget.parentNode;
var theEvent = document.createEvent('MouseEvents');
theEvent.initEvent('click', true, true);
theTarget.dispatchEvent(theEvent);
};
//========================================================
//When using jQuery call init on domReady-Event
$(document).ready(function() {
initFastButtons();
})