UIActionRecord 是一个语音聊天输入功能插件。通过 open 接口可在当前 window 底部打开一个语音输入面板,该语音输入面板的生命属于当前 window 所有。
打开语音输入面板
recordAudio(callback(ret))
ret:
{
bytes: '' //字符串类型;点击发送后获取语音base64字符串
}
var UIActionRecord = api.require('UIActionRecord');
UIActionRecord.recordAudio(function(ret) {
if (ret) {
api.alert({msg:JSON.stringify(ret)});
}
});
iOS 系统,Android 系统
可提供的 1.0.0 及更高版本