2012年12月15日 星期六

Notification


NotificationManager gNotMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//產生Notification物件,並設定基本屬性
Notification tBNot = new Notification(R.drawable.ic_launcher, "Msg", System.currentTimeMillis());

Intent notificationIntent = new Intent(getBaseContext(), MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(getBaseContext(), 0, notificationIntent, 0);
tBNot.setLatestEventInfo(getBaseContext(), "Vibrate Title", "Vibrate Content", contentIntent);
gNotMgr.notify(1, tBNot);  

沒有留言:

張貼留言

Related Posts Plugin for WordPress, Blogger...