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

1 に答える 1