メイン アクティビティから直接通知を作成しようとしています。
ここに私のコードがあります -
public class Notification extends Activity{
private static final int NOTIFY_ME_ID=1987;
private int count=0;
private NotificationManager mgr=null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mgr=(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
notifyMe();
}
public void notifyMe(){
Notification notification = new Notification(R.drawable.icon,
"Notification text that will be shown on status bar.",
System.currentTimeMillis());
// The PendingIntent will launch activity if the user selects this
// notification
PendingIntent contentIntent = PendingIntent.getActivity(Notification.this,
0, new Intent(Notification.this, MainActivity.class), 0);
notification.setLatestEventInfo(Notification.this, "Content Title", "Content text",
contentIntent);
mgr.notify(NOTIFICATION_ID, notification);
}
しかし、次のエラーが表示されます: The constructor Notification(int, String, long) is undefined
エラーが発生する行は次のとおりです。
Notification notification = new Notification(R.drawable.icon,
"Notification text that will be shown on status bar.",
System.currentTimeMillis());