Hi fellow Android developers, I am using a notification with vibration. The vibration doesn't vibrate when notifying in the alert while calling the phone.
my code like .. NotificationManager _notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); Notification notification = new Notification(icon, id, System.currentTimeMillis()); notification.defaults |= Notification.DEFAULT_VIBRATE; notification.setLatestEventInfo(context,contentTitle,contentText,contentIntent); _notificationManager.notify(id, notification); The notification is displayed in the notification area. but It doesn't vibrate. I'm useing ht-03a and APILevel 4(platform1.6) please help me. thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

