What are Android dialog notifications?
I read an article that said there are 3 types of notification in Android:
- Toast notifi开发者_如何学Gocations
- Status bar notifications
- Dialog notifications
I know what status bar notification and toast notifications are, but I don't know about dialog notifications. Can anyone give me an example?
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
精彩评论