tags:

views:

41

answers:

3

Hi,

I am new to android.I want to now how to create a status notification bar in the home page.can anyone help me with some codes.Thanks in advance......

+1  A: 

NotificationManager

Schildmeijer
+1  A: 

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);



To cancel notification

notificationManager.cancel(NOTIFICATION_ID);

viv
A: 

Look at it: Android Status Bar

Amer Sohail