流星悟语 发表于 2015-8-17 15:30:40

蓝牙应用程序控制代码

如何发现可用的蓝牙设备和蓝牙配置文件细节。 ——使用别名“tizen.bluetooth”的应用程序ID。 ——支持http://tizen.org/appcontrol/operation/bluetooth/pick操作。
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/bluetooth/pick");
var appControlReplyCallback = {
    onsuccess: function(data) {
      console.log("success reply");
             for(var i=0;i<data.length;i++) {
            if(data.key === "http://tizen.org/appcontrol/data/bluetooth/name") {
                console.log(data.value);
            }      
             }
    },
    onfailure: function() {
      console.log("fail reply");
    }
};
tizen.application.launchAppControl(appControl, "tizen.bluetooth",
    function() {
      console.log("launch appControl succeeded");
    }, function(e) {
      /* Error handling */
    }, appControlReplyCallback);


页: [1]
查看完整版本: 蓝牙应用程序控制代码