Как удалить устаревшую версию из моего кода? Из-за этого я, кажется, получаю предупреждения. Пронумерованные тексты были «новым уведомлением» и setLatestEventInfo? Он говорит: «Этот метод является устаревшим в уровне API 11? Что это значит? Просьбы помочь. Как мне решить эту проблему?В Android, как удалить переменную уведомления из устаревших?
@SuppressWarnings("deprecation")
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
Toast.makeText(this, "OnStartCommand()", Toast.LENGTH_SHORT).show();
NotificationManager notificationmanager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Intent notificationintent = new Intent(this, Reminder_2.class);
PendingIntent pendingintent = PendingIntent.getActivity(this, 0, notificationintent, 0);
int icon=R.drawable.ic_launcher;
long when=System.currentTimeMillis();
@SuppressWarnings("deprecation")
Notification notification=new Notification (icon, "There's a message", when);
notification.setLatestEventInfo(this, "Title here", "Content here.", pendingintent);
notificationmanager.notify(033, notification);
return super.onStartCommand(intent, flags, startId);
}