微信使用touchstart录音,安卓触发不灵敏


在微信公众号h5开发过程中调用微信的录音功能,使用touchstart、touchmove、touchend、touchcancel来触微信录音的API wx.startRecord、wx.stopRecord;

但是在安卓端当手指按到屏幕上时,并没有立刻触发touchstart,导致无法触发微信wx.startRecord方法,用户的感受是手指按到屏幕,但是没有触发录音;

但是,当用户手指轻轻移动,就是立刻触发touchstart方法,继而触发wx.startRecord,开始录音;

针对上述问题,在安卓h5页面触发touchstart时调用安卓独有的vibrate方法,使页面轻微震动,从而解决touchstart不立刻触发的问题;

/** 安卓振动,兼容不同的浏览器   */
if("vibrate" in navigator) { 
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate;
navigator.vibrate([5, 60, 80]) 
};复制代码



你可能感兴趣的:(微信使用touchstart录音,安卓触发不灵敏)