yuyuyu
yuyuyu
  • 发布:2016-02-24 13:26
  • 更新:2016-02-24 16:05
  • 阅读:1803

语音识别的 userInterface 参数设置无效,无法隐藏默认的语音提示样式?

分类:HTML5+

语音识别的 userInterface 参数设置无效,无法隐藏默认的语音提示样式?我想写一个自定义的界面,隐藏这个默认的,好像隐藏不了,有人可以用吗?

function startRecognize() {  
				var options = {};  
				options.engine = 'iFly';  
				options.userInterface = false;  
				text = "";  
				plus.speech.startRecognize(options, function(s) {  
					text += s;  
					document.getElementById("info").innerText = text;  
				}, function(e) {  
					alert("语音识别失败:" + e.message);  
				});  
			}
2016-02-24 13:26 负责人:无 分享
已邀请:
DCloud_UNI_FXY

DCloud_UNI_FXY

目前userInterface不起作用。

该问题目前已经被锁定, 无法添加新回复