«android-notification-bar» 태그된 질문

6
알림이 이전 의도 엑스트라를 전달 함
이 코드를 통해 BroadcastReceiver 내부에 알림을 작성 중입니다. String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = {0,100,200,200,200,200}; notification.vibrate = vibrate; notification.flags |= Notification.FLAG_AUTO_CANCEL; …

6
Android 4.1 : 애플리케이션에 대한 알림이 비활성화되었는지 확인하는 방법은 무엇입니까?
Android 4.1은 사용자에게 특정 애플리케이션에 대한 알림을 비활성화하는 확인란을 제공합니다. 그러나 개발자로서 알림 호출이 효과적인지 여부를 알 수있는 방법이 없습니다. 현재 애플리케이션에 대한 알림이 비활성화되어 있는지 확인해야하지만 API에서 해당 설정을 찾을 수 없습니다. 코드에서이 설정을 확인하는 방법이 있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.