Ionic 2 Native Audio Android上没有声音

问题描述 投票:1回答:1

我在Ionic中创建了一个简单的应用程序,它使用Native Audio播放单个MP3文件。代码:

export class MyApp{

  constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, private nativeAudio:NativeAudio) {
    platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.

      statusBar.styleDefault();
      splashScreen.hide();

      this.nativeAudio.preloadComplex('24', 'assets/klamydihahaha.mp3',1,1,0.1).then(
          (data)=>{
              alert(data);
            this.nativeAudio.play('24',()=>{alert("done")});
          },(error)=>{
              alert(error);
          }
      )
    });
  }
}

我在使用Android 6.0的Sony Xperia设备上运行此功能

ionic cordova run android --device

警报消息将首先显示“ok”,它将等待,然后将显示消息“done”。但是没有声音。 MP3文件工作正常。可能是什么问题?

android audio ionic2
1个回答
0
投票

可能是您的命令中未包含cordova API

而是键入此命令

ionic cordova run android --emulator

要么

ionic cordova emulate android
© www.soinside.com 2019 - 2024. All rights reserved.