Android에서 프로그래밍 방식으로 알림 표시 줄에서 알림을 제거하는 방법은 무엇입니까? 누구나 Pending 인 텐트를 사용하여 호출되는 프로그래밍 방식으로 애플리케이션에서 알림을 제거 할 수있는 방법을 알고 있습니다. 다음과 같은 방법으로 알림을 취소했습니다. AlarmManager am=(AlarmManager)getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(Display.this, TwoAlarmService.class); PendingIntent pi = PendingIntent.getBroadcast(Display.this, AlarmNumber, intent, PendingIntent.FLAG_CANCEL_CURREN..