Диалог оповещения Android от onHandleIntent
Как показано, когда я запускаю IntentService, alertDialog не будет присутствовать. Я озадачен этой ситуацией.
protected void onHandleIntent(@Nullable Intent intent) {
AlertDialog alertDialog = new AlertDialog.Builder(getApplicationContext())
.setTitle("Title")
.setMessage("Are you sure?")
.create();
alertDialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
alertDialog.show();
while (true);
}