From the official documentation, it should be to obtain the notification content of other apps and display it on your own lock screen.
Lock Screen Notifications
With the release of Android 5.0 (API level 21), notifications may now appear on the lock screen. Your app can use this functionality to provide media playback controls and other common actions. Users can choose via Settings whether to display notifications on the lock screen, and you can designate whether a notification from your app is visible on the lock screen.
is displayed as a system notification layer window. You can take a look at the type attribute of WindowManager.LayoutParams. I have done a similar function, which is to set my own level to TYPE_SYSTEM_ERROR to ensure that I am at the top of all windows.
From the official documentation, it should be to obtain the notification content of other apps and display it on your own lock screen.
http://developer.android.com/guide/topics/ui/notifiers/notifications.html#lockscreenNotification
You can get the notification without displaying it and upload it secretly
is displayed as a system notification layer window. You can take a look at the type attribute of WindowManager.LayoutParams. I have done a similar function, which is to set my own level to TYPE_SYSTEM_ERROR to ensure that I am at the top of all windows.