Eine Statusbenachrichtigung fügt der Statusleiste des Systems ein Symbol (mit einer optionalen Ticker-Textnachricht) und eine Benachrichtigungsnachricht im Benachrichtigungsfenster hinzu.
Jeder hat eine Idee, wie wir Benachrichtigungen programmgesteuert aus der Anwendung entfernen können, die mit Pending Intent aufgerufen werden. Ich habe die Benachrichtigung mit der folgenden Methode abgebrochen. AlarmManager am=(AlarmManager)getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(Display.this, TwoAlarmService.class); PendingIntent pi = PendingIntent.getBroadcast(Display.this, AlarmNumber, intent, PendingIntent.FLAG_CANCEL_CURRENT); am.cancel(pi); Das Problem ist jedoch eine Benachrichtigung, …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.