Android:停止声音通知

时间:2012-06-08 15:30:00

标签: android android-notifications notificationmanager

我使用NotificationManager播放声音。但是,当我按任意键时,我不知道如何阻止它。例如,后退按钮。非常感谢.~~~ ^^

NotificationManager manager 
    = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 

Notification notification = new Notification(); 
notification.sound=Uri.parse("android.resource://" 
    + getPackageName() + "/" +R.raw.fin); 

manager.notify(1, notification);

1 个答案:

答案 0 :(得分:0)

我相信NotificationManager使用MediaPlayer播放声音。 这默认播放整个声音。 所以你需要打电话给mediaplayer.stop。 您是否尝试过取消通知? notification Cancel