[android-developers] Re: How can i start my own activity for new notification?

2009-08-04 Thread Lazarus 101
you want to display a notification and when the user selects it display an activity? NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); Intent intent = new Intent(context, Screen.class);

[android-developers] Re: How can i start my own activity for new notification?

2009-08-04 Thread Lazarus 101
you want to display a notification and when the user selects it display an activity? NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); Intent intent = new Intent(context, Screen.class);

[android-developers] Re: How can i start my own activity for new notification?

2009-08-04 Thread Desu Vinod Kumar
I am getting Notifiaction to my app if i click that notification i want to show some animationmy own On Tue, Aug 4, 2009 at 1:39 PM, Lazarus 101 lazarus...@gmail.com wrote: you want to display a notification and when the user selects it display an activity? NotificationManager