음소거 상태 유지하기
- 인쇄
음소거 상태 유지하기
- 인쇄
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
Shoplive Player에서 소리 상태를 유지 할 수 있습니다.
음소거 버튼
클릭 시 콜백
private var isMuted = false
override fun log(data: ShopLiveLog.Data) {
when (data.name) {
"video_muted" -> {
isMuted = true
}
"video_unmuted" -> {
isMuted = false
}
}
}
API reference: ShopLiveHandler.onReceivedCommand
음소거
설정 상태를 Shoplive Player로 전달
private var isMuted = false
ShopLive.setMuteWhenPlayStart(isMuted)
API reference: ShopLive.setMuteWhenPlayStart