NotificationManager nm = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification nf = new Notification(R.drawable.ic_launcher,"Text",System.currentTimeMillis());
nf.setLatestEventInfo(this, "Title", "Text",
PendingIntent.getActivity(MainActivity.this, 0, new Intent(getApplicationContext(), MainActivity.class), 0));
nm.notify(0,nf);