在Android中通过AudioManager播放音频?
我使用以下方式播放声音:
public class NotificationFunction implements FREFunction {
public FREObject call(FREContext context, FREObject[] args) {
Context appContext = context.getActivity().getApplicationContext();
AudioManager mAudioManager = (AudioManager)
appContext.getSystemService(Context.AUDIO_SERVICE);
mAudioManager.loadSoundEffects();
mAudioManager.playSoundEffect(0);
它播放默认音效,如何让它播放自定义音效。
我也尝试过实现声音池,但它不起作用,我以标准方式实现它,但它不起作用。有什么想法吗?或者我是否可以使用音频管理器来代替声音?
I play a sound using:
public class NotificationFunction implements FREFunction {
public FREObject call(FREContext context, FREObject[] args) {
Context appContext = context.getActivity().getApplicationContext();
AudioManager mAudioManager = (AudioManager)
appContext.getSystemService(Context.AUDIO_SERVICE);
mAudioManager.loadSoundEffects();
mAudioManager.playSoundEffect(0);
It plays a default sound effect, how can I get it to play a custom sound effect.
Also I have tried to implement sound pool but it doesnt work, I implemented it the standard way but it doesnt work. Any ideas why? Or if I can use the audio manager for sounds instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用下面的代码检查一下
Check with following code