How to dismiss system dialog in Android?

前端 未结 4 1081
梦毁少年i
梦毁少年i 2020-12-02 09:02

I have to dismiss this system Dialog (Attached below). I am getting this value but I am not able to dismiss it programmatically in Service not in Activity.

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 09:22

    Please check it

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
            super.onWindowFocusChanged(hasFocus);
    
            if (! hasFocus) {
                Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
                sendBroadcast(closeDialog);
            }
        }
    

    It is working in my code.

提交回复
热议问题