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);