현재 안드로이드를 배운지 얼마 안되서
헷갈리는 부분이 많네요 ㅜ

간단한 mp3플레이어를 만들고 있는데
notification을 사용하여 상태창이 뜨게 만들었습니다.

바탕화면(?)에서 notification을 끌어내려서
mp3플레이어를 누르면 다시 mp3플레이어 화면으로 돌아가게 하고 싶은데
눌러도 다시 바탕화면으로 돌아갑니다
어떻게 해결할 수 있을까요?

notification부분 소스코드 첨부 합니다

        ntent sIntent = new Intent(MusicPlayerMain.this, MusicService.class);
        bindService(sIntent, connection, Context.BIND_AUTO_CREATE);

        NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        PendingIntent notifIntent = PendingIntent.getActivity(this, 0, sIntent, 0);

        Notification notif = new Notification(R.drawable.icon, "invalid userid", System.currentTimeMillis());
        notif.setLatestEventInfo(this, "title", "text", notifIntent);
        notif.number++;  
        nm.notify(notif.number, notif);