コードから非推奨を削除するにはどうすればよいですか? このため、警告が表示されているようです。取り消し線のテキストは「新しい通知」と setLatestEventInfo? でした。「このメソッドは API レベル 11 で廃止されましたか?それはどういう意味ですか?助けてください。どうすれば解決できますか?
@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);
}