播放Android默认音效

时间:2016-11-23 15:55:49

标签: android audio effect

有没有办法以编程方式播放内置音效?当我的应用程序扫描NFC标签时,我想播放NFC音效(成功音效和失效音效)。

1 个答案:

答案 0 :(得分:2)

我只是粘贴了 - StackOverflow question to play Android Notification sound

中接受的答案中的代码
try {
    Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
    r.play();
} catch (Exception e) {
    e.printStackTrace();
}