我花了我最後2個小時試圖弄清我們爲什麼從FireBase發出的通知沒有發出任何聲音或振動。Android notificationcomcomp聲音/振動不起作用
我已經看過關於這個問題的許多議題,並與.setDefaults
.setVibrate(new long[] { 1000, 1000, 1000, 1000, 1000 })
.setSound(defaultSoundUri)
嘗試不同的組合,我現在所擁有的是這樣的:
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Firebase Push Notification")
.setContentText(messageBody)
.setAutoCancel(true)
.setPriority(Notification.PRIORITY_MAX)
.setDefaults(-1)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
我沒有任何錯誤和通知顯示,但我重複,沒有聲音,沒有振動,沒有led燈,沒有擡頭。
要送我使用Python庫我的服務器上的通知:
# Send to single device.
from pyfcm import FCMNotification
push_service = FCMNotification(api_key="xxxxxxxxxxxxxxxx")
registration_id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
message_title = "Test"
message_body = "Test notification"
result = push_service.notify_single_device(registration_id=registration_id, message_title=message_title, message_body=message_body)
print result
注:我已經在清單中定義的權限:<uses-permission android:name="android.permission.VIBRATE" />
任何IDEEA?
如果您是通過應用服務器發送,那麼請分享JSON –
您的通知有效載荷只是刪除.setDefaults(-1)和使用.setDefaults(Notification.DEFAULT_SOUND),而不是 – Jai
@NishantDubey我從我的服務器中添加的代碼。 Jai去掉.setDefaults(-1)不起作用 –