触发时通知不会振动

时间:2017-03-25 11:57:48

标签: android notifications android-vibration

我正在开发一个Android应用程序,我希望通知特定用户有关特定事件的信息。这些通知是使用Firebase云消息传递数据消息进行的。当我向用户客户端发送数据消息时,会调用onMessageReceived方法,我可以按照自己的意愿处理这些消息。

现在我想在消息到达的那一刻让设备振动。因此,我试图建立一个通知并在其上设置振动,但它根本不振动。

我在我的应用程序Manifest中也包含了VIBRATE权限。

以下是构建通知的代码:

            NotificationCompat.Builder mBuilder =
                    (NotificationCompat.Builder) new NotificationCompat.Builder(this)
                            .setSmallIcon(R.mipmap.ic_icon)
                            .setContentTitle("Content Title")
                            .setContentText("Content Text")
                            .setVibrate(new long[] {500,500,500,500,500,500,500,500,500});

            Notification note = mBuilder.build();
            NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
            mNotificationManager.notify(1, note);

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

 NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(context)
                        .setSmallIcon(R.drawable.ic)
                        .setContentTitle(context.getString(R.string.text))
                        .setContentText(context.getString(R.string.app_name))
                        .setContentIntent(contentIntent);


        mBuilder.setVibrate(new long[]{500, 500});
        mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);


        NotificationManager mNotifyMgr =
                (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);


        mNotifyMgr.notify(001, mBuilder.build());

这适合我。