Frage

Hello friends i want to show my application as like below screen in our mobile notification detail

Any idea how can i achieve this?

My Custom Dialog

enter image description here

War es hilfreich?

Lösung

Assign Notification.FLAG_ONGOING_EVENT flag to your Notification.

Sample code:

yourNotification.flags = Notification.FLAG_ONGOING_EVENT;
// Notify...

If you aren't familiar with the Notification API, read Creating Status Bar Notifications on Android developers website.

Source: Android: How to create an "Ongoing" notification?

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top