开发者

Android notification

Hos do I make a list wi开发者_开发问答th notifications in the notification bar (the pull down menu with USB connection mode etc)?


Come on dude this is standard stuff:

http://developer.android.com/guide/topics/ui/notifiers/notifications.html

String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = 
                                      (NotificationManager) getSystemService(ns);

int icon = android.R.drawable.ic_media_play;
CharSequence ticketText = "Now - Playing";
long when = System.currentTimeMillis();

Notification notification = new Notification(icon, ticketText, when);

Context context = getApplicationContext();
CharSequence contentTitle = "Now";
CharSequence contentText = "Session";
Intent notificationIntent = new Intent(this, PlayTrack.class);
notificationIntent.addFlags(Notification.FLAG_ONGOING_EVENT);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, 
                                        notificationIntent, 0);

notification.setLatestEventInfo(context, contentTitle,contentText,contentIntent);

mNotificationManager.notify(CONFIDENCE_NOW_ID, notification);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜