I have implemented alarm in android app. Alarm is working fine. Toast message is visible. Now I want to make Alert Box Notification to user.
Toast
You can try to show dialog with sytem alert attributes:
YourAlertDialog dialog = new YourAlertDialog(mContext); dialog.getWindow() .setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); dialog.show();
And Add system alert permission in your mainfest.xml: