Taro.onScreenRecordingStateChanged(callback)
监听用户录屏事件
支持情况:
类型
(callback: Callback) => void
参数
参数 | 类型 | 说明 |
---|---|---|
callback | Callback | 用户录屏事件的监听函数 |
ScreenRecordingState
参数 | 说明 |
---|---|
start | 开始录屏 |
stop | 结束录屏 |
Callback
用户录屏事件的监听函数
(state: keyof ScreenRecordingState) => void
参数 | 类型 | 说明 |
---|---|---|
state | keyof ScreenRecordingState | 录屏状态 |
示例代码
// 监听用户录屏事件
const handler = function (res) {
console.log(res.state)
}
Taro.onScreenRecordingStateChanged(handler)