PendingIntent
  public void addNotification(String content,long notifyId)
    {
     
     //launch = new Intent(this,ProtoMemo.class);
     Intent intent = new Intent(this,ToastMemo.class);
     intent.putExtra(MemoVar.KEY_MEMOID,notifyId);
     String nofityMessage;
     if(content.length() > 10)
     {
      nofityMessage = content.substring(0, 9)+"...";
     }
     else
     {
      nofityMessage = content;
     }
     
     Notification notify = new Notification();
  notify.icon = R.drawable.notify;
  notify.tickerText = nofityMessage;
  notify.when = System.currentTimeMillis();
  
  intentBack = PendingIntent.getActivity(this, 0,intent,0);
  notify.setLatestEventInfo(this, nofityMessage, content, intentBack);
  setNotification((int)notifyId, notify);

PendingIntent를 만들고 Notification에 넣어줬습니다..

해당 메소드를 여러번 호출해 여러 Notification을 만들경우에

모든 Notification이 처음 만들어진 PendingIntent를 호출하게됩니다..

제가 하려고하는건 Notification마다 다른 인텐트를 설정해 액티비티를 불러오는것인데

항상 젤처음 등록된 Intent설정이 불려집니다 해결좀해주셍 ㅠ