1
我使用NotificationManager播放聲音。但是當我按任意鍵時,我不知道如何阻止它。例如,後退按鈕。非常感謝~~~ ^^Android:停止聲音通知
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);
恩......是的,我只是想阻止它......或者退出此通知。 無論如何,謝謝你的回覆。 –