안녕하세요..


공부중인 초보입니다.ㅋ


노티피케이션 질문인데요


노티피케이션 관련 소스를 보던중에 의문이있어 문의드립니다.


노티피케이션에 글자가 입력될때 , 위에 알람이안나오게 하고 싶은데요 ..


도저희 검색이 안되서 여쭤봅니다 ㅠ


        NotificationManager notiMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        Notification noti = new Notification(

                android.R.drawable.star_on,

                "요게 알람",

                System.currentTimeMillis());


        Intent intent = new Intent();

        intent.setClassName("test", "test Activite");

                

        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, 0);


       

        noti.setLatestEventInfo(this,"요기가 재목", "요기가 내용", contentIntent);

        notiMgr.notify(1, noti);


요래 하면 노티피케이션에 알람이 생기던데요


위에         Notification noti = new Notification(

                android.R.drawable.star_on,

                "요게 알람",

                System.currentTimeMillis());


요 알람부분이 안나왔으면 하거든요 

알람없이 상태바만 내리면 재목이랑 내용이 나오게 할 수 있는 방법은 없나요?

조언 부탁드립니다ㅠ