Skip to content Skip to sidebar Skip to footer

Dialog From Service Not Showing On Lollipop When Screen Is Locked

I am trying to show a Dialog from service in onStartCommand method private Dialog incomingCallDialog; incomingCallDialog = new Dialog(MyService.this, R.style.PopupDialog);

Solution 1:

Change TYPE_SYSTEM_ALERT to TYPE_SYSTEM_OVERLAY it should work


Post a Comment for "Dialog From Service Not Showing On Lollipop When Screen Is Locked"