J'ai essayé de créer une notification avec ce code:
private void setNotificationAlarm(Context context)
{
Intent intent = new Intent(getApplicationContext() , MyNotification.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000 , pendingIntent);
Log.d("ME", "Alarm started");
}
public class MyNotification extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
Log.d("ME", "Notification started");
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("My notification")
.setContentText("Hello World!");
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, mBuilder.build());
}
}
Et voici ma déclaration Mainfest:
<receiver
Android:name=".MyNotification"
Android:enabled="true"
Android:exported="false" >
</receiver>
Mon problème est maintenant que l'alarme est générée mais que la notification ne s'affiche pas. Le BroadcastReceiver est déclaré dans le fichier mainfest et il n'y a aucune erreur de compilation ou d'exécution.
Mon deuxième problème est que setLatestEventInfo
et new Notification
Le constructeur est obsolète. Que puis-je utiliser à la place?
Je pense que vous devez utiliser
PendingIntent.getBroadcast (Context context, int requestCode, Intent intent, int flags)
au lieu de getService
vous pouvez utiliser
Intent switchIntent = new Intent(BROADCAST_ACTION);
à la place d'utiliser
Intent intent = new Intent(getApplicationContext() , MyNotification.class);
ici BROADCAST_ACTION est l'action que vous définissez dans le manifeste
<receiver Android:name=".MyNotification " Android:enabled="true" >
<intent-filter>
<action Android:name="your package.ANY_NAME" />
</intent-filter>
</receiver>
vous pouvez l'attraper en utilisant ce nom d'action
public class MyNotification extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String act = "your package.ANY_NAME";
if(intent.getAction().equals(act)){
//your code here
}
}}
Vous utilisez Notification.Builder
Pour créer la notification maintenant et l'intention en attente doit être PendingIntent.getBroadcast()