我的應用程序出現小問題。當有通知時,我會播放自定義聲音。問題是,當通知聲音播放時,您打開應用程序,它會停止音頻。有沒有解決這個問題的方法,所以它不會阻止應用程序啓動時的音頻。任何幫助將不勝感激。我的應用支持api 8及以上版本。Android - 通知活動音頻關閉應用程序啓動
NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(adhanTitle)
.setContentText("Adhan Time");
builder.setDefaults(2);
builder.setAutoCancel(true);
Intent notificationIntent = new Intent(context, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(contentIntent);
NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(252300, builder.build());
MediaPlayer mPlayer;
mPlayer = MediaPlayer.create(context, R.raw.fajr);
mPlayer.start();
當我在做測試等時,它工作正常。當我在Play商店發佈它時,現在這個問題就在那裏。當應用程序沒有簽名時,它不會這樣做。謝謝你的幫助。 – user2122179