일정 수준의 Battery 레벨 아래로 떨어졌을 때 발생되는

Low battery 경고 dialog를 강제로 없앨려고 합니다.

 

그래서 dialog창이 발생했을 때

     Intent inte = new Intent();
     inte.setAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
     getApplicationContext().sendBroadcast(inte);

 

이런 식의 broadcast intent를 보냈는데, 폰에서는 작동을 안하네요..

 

제가 만든 application에서 권한이 없는건지,

아니면 Low battery Dialog는 system dialog가 아니라서 안 먹힌건지

 

혹시 여기에 대해서 아시는 분이 계실려나요?