gpt4 book ai didi

audio - 如何在 Jetpack Compose Button click 中播放平台 CLICK 声音

转载 作者:行者123 更新时间:2023-12-04 03:40:42 32 4
gpt4 key购买 nike

似乎 Jetpack Compose Button click 没有默认声音。如何添加标准 CLICK按钮点击的声音?

最佳答案

我尝试了这个答案并成功了......
Can't play sound on button click using playSoundEffect(SoundEffectConstants.CLICK)

val context = AmbientContext.current
...

OutlinedButton(
content = { Text("OK") },
onClick = {
val audioManager = context.getSystemService(Context.AUDIO_SERVICE) as AudioManager
audioManager.playSoundEffect(SoundEffectConstants.CLICK,1.0f)
}
)

关于audio - 如何在 Jetpack Compose Button click 中播放平台 CLICK 声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66080018/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com