标签: javascript android webview devicemotion
我正在使用devicemotion事件来检测用户的摇动手势。在大多数设备上,它都能正常工作,直到我发现一些android 7.x或8.x设备在监听时仅在webview中触发一次devicemotion。
devicemotion
var count = 0; window.addEventListener('devicemotion', () => { console.log(count++); }, false);
我上面提到的设备仅记录count一次,其他设备将继续记录count
count