Android状态栏通知

bha*_*thi 2 android

我是android的新手.我现在想要如何在主页中创建状态通知栏.任何人都可以帮我一些代码.提前致谢.

viv*_*viv 5

notificationManager = (NotificationManager)_context.getSystemService(Context.NOTIFICATION_SERVICE);
long when = System.currentTimeMillis();
int _icon=R.drawable.icon;

Intent intent = new Intent(_context, your_file.class);

PendingIntent contentIntent = PendingIntent.getActivity(_context, 0, intent, 0);

Notification notification = new Notification(_icon,_text,when);
notification.setLatestEventInfo(_context, _title, _contentText, contentIntent);
int NOTIFICATION_ID = 10;
notificationManager.notify(NOTIFICATION_ID, notification);
Run Code Online (Sandbox Code Playgroud)

取消通知

notificationManager.cancel(NOTIFICATION_ID);
Run Code Online (Sandbox Code Playgroud)