1 레이아웃을 만든다. 2 매니페스트에 리시버를 등록한다. 1 2 3 4 5 Colored by Color Scripter cs 3 메소드를 만든다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 public void noti(View v) { Notification mNoti = new Notification.Builder(this) .setContentTitle("") .setContentText("") .setTicker("") .setSmallIcon(R.drawable.launcher) .build(); NotificationManager mNotimana = (No..