0
我正在開發音樂播放器,但是當我單擊創建的通知時,會顯示此活動的新版本,而不是顯示當前正在播放的歌曲和搜索欄的新版本。如何在點擊通知時顯示相同的活動?
我使用通知當前的代碼是
Intent i = new Intent(this, AmplitudeMusicPlayer.class);
i.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pIntent = PendingIntent.getActivity(this, 0 , i, 0);
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
NotificationCompat.Builder noti = new NotificationCompat.Builder(this);
noti.setContentTitle("Now Playing")
.setContentText(songTitle)
.setSmallIcon(R.drawable.default_art)
.setContentIntent(pIntent);
notificationManager.notify(0, noti.build());
謝謝!標記爲正確 – user2047366