मैंने नए NotificationCompat बिल्डर का उपयोग किया है और मुझे ध्वनि बनाने के लिए सूचना नहीं मिल सकती है। यह प्रकाश को कंपन और फ्लैश करेगा। Android प्रलेखन एक शैली सेट करने के लिए कहता है, जिसे मैंने किया है:
builder.setStyle(new NotificationCompat.InboxStyle());
लेकिन कोई आवाज नहीं?
पूर्ण कोड:
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Notifications Example")
.setContentText("This is a test notification");
Intent notificationIntent = new Intent(this, MenuScreen.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(contentIntent);
builder.setAutoCancel(true);
builder.setLights(Color.BLUE, 500, 500);
long[] pattern = {500,500,500,500,500,500,500,500,500};
builder.setVibrate(pattern);
builder.setStyle(new NotificationCompat.InboxStyle());
// Add as notification
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(1, builder.build());