我使用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);
答案 0 :(得分:0)
我相信NotificationManager使用MediaPlayer播放声音。 这默认播放整个声音。 所以你需要打电话给mediaplayer.stop。 您是否尝试过取消通知? notification Cancel