Я попытался создать уведомление с помощью этого кода:
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());
}
}
И вот моя декларация Mainfest:
<receiver
android:name=".MyNotification"
android:enabled="true"
android:exported="false" >
</receiver>
Теперь моя проблема заключается в том, что будильник генерируется, но уведомление не отображается. BroadcastReceiver объявляется в файле mainfest, и нет ошибок компилятора или времени выполнения.
Моя вторая проблема заключается в том, что setLatestEventInfo
и new Notification
Contructor устарели. Что я могу использовать вместо него?