我正在为三星Gear S2(网络)开发应用程序,计时器会在时间结束时振动。我需要做什么,所以我的应用程序即使在后台模式下也可以振动?
答案 0 :(得分:0)
通常,除非您使用Alarm API或Notification,否则背景振动(来自屏幕关闭状态)不能直接用于Web应用程序。
但是使用Power API和web workers可以轻松排除定时背景振动。我正在分享示例代码:
main.js
window.onload = function() {
document.addEventListener('tizenhwkey', function(e) {
if (e.keyName === "back") {
try {
tizen.application.getCurrentApplication().hide();
}catch (ignore) {}
}
});
var mainPage = document.querySelector('#main');
mainPage.addEventListener("click", function() {
var contentText = document.querySelector('#content-text');
var worker; //web worker
worker = new Worker("js/worker.js"); //load from directory
worker.onmessage = function(event) { //receive data from worker
tizen.power.turnScreenOn(); // forcefully turn the screen on
setTimeout(function (){
contentText.innerHTML = event.data; // time counter
navigator.vibrate(1000);
}, 500); // just being safe (vibrate after screen is on)
};
});
};
worker.js
var i=0;
function timedCount() {
i=i+1;
postMessage(i); //send data
setTimeout("timedCount()",5000); // set vibration interval (or use specific time)
}
timedCount();
在config.xml上添加这些行
<tizen:privilege name="http://tizen.org/privilege/power"/>
<tizen:setting background-support="enable" encryption="disable" hwkey-event="enable"/>
启用后台支持后,当您应用网络工作时,应用会在最小化时响应。在后退键事件上使用 getCurrentApplication()。hide()而不是getCurrentApplication()。exit()将为您完成任务。
检查Vibration Guide是否有不同类型的振动。