mPlayerNotify = new Notification(R.drawable.ic_launcher , "플레이중" , 0);
mPlayerNotify.contentView = new RemoteViews(this.getPackageName(), R.layout.notiplayer);
PlayerNotify.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;;

으로 지정하고 
Intent toLaunch = new Intent(mCtx, ActivityPlay.class);
PendingIntent intentBack = PendingIntent.getActivity(mCtx, 0, toLaunch, PendingIntent.FLAG_CANCEL_CURRENT);
mPlayerNotify.contentView.setOnClickPendingIntent(R.id.imageView_thum, intentBack);

이렇게 클릭이벤트를 주었습니다 .

액티비티는 호출이 되는데 Notification 이 닫히질 않네요 .
                Notification 은 어떻게 닫나요 ?