Android中建议的通知振动持续时间是多少?
这是我当前的代码,它使通知振动1000ms
notificationBuilder.setVibrate(new long[] {0,1000});
是否有类似
notificationBuilder.setVibrate("default_time");
的内容 最佳答案
可以使用以下默认值-
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this);
Notification note = mBuilder.build();
note.defaults |= Notification.DEFAULT_VIBRATE;
note.defaults |= Notification.DEFAULT_SOUND;
或者你也可以
mBuilder.setDefaults(DEFAULT_SOUND | DEFAULT_VIBRATE | DEFAULT_LIGHTS);