Reputation: 1379
I read an article that said there are 3 types of notification in Android:
I know what status bar notification and toast notifications are, but I don't know about dialog notifications. Can anyone give me an example?
Upvotes: 0
Views: 4903
Reputation: 8151
A dialog notification is:
A dialog is usually a small window that appears in front of the current Activity. The underlying Activity loses focus and the dialog accepts all user interaction. Dialogs are normally used for notifications and short activities that directly relate to the application in progress.
(See the link below for a graphical example of it)
Source: http://developer.android.com/guide/topics/ui/notifiers/index.html#Dialog
Upvotes: 2