Ionic:获取默认或当前设置的声音/铃声通知?

时间:2018-09-27 08:40:28

标签: android ios ionic-framework settings ringtone

我需要在离子应用程序的电话设置中播放选定的铃声以进行通知。目前,我正在使用native-ringtone插件播放其他声音,似乎我需要一条播放铃声的路径。

我知道在Android中可以通过以下方式获取选定的声音:

Uri alarmTone = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
Ringtone ringtoneAlarm = RingtoneManager.getRingtone(getApplicationContext(), alarmTone);
ringtoneAlarm.play();

但是,我需要在Ionic中完成此操作。有没有可以实现相同功能的插件(也在ios中)?

谢谢您的帮助

0 个答案:

没有答案