What are Android dialog notifications?

徘徊边缘 提交于 2019-12-23 05:29:49

问题


I read an article that said there are 3 types of notification in Android:

  • Toast notifications
  • 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?


回答1:


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



来源:https://stackoverflow.com/questions/6202503/what-are-android-dialog-notifications

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!