Den*_*nov 9 audio android-jetpack-compose
Jetpack Compose按钮单击似乎没有默认声音。如何为按钮点击添加标准的“点击”声音?
我尝试了这个答案并且工作了......
无法使用 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)
}
)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2587 次 |
| 最近记录: |