我使用以下方法播放声音:
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);
它播放默认音效,我怎样才能让它播放自定义音效。
我也尝试实现声音池但它不起作用,我以标准方式实现它但它不起作用。任何想法为什么?或者如果我可以使用音频管理器来代替声音?