我正在尝试为 android 和 Android Wear (Wear OS) 开发一个应用程序。我创建了一个Notification
从手机到手表。
notification = new NotificationCompat.Builder(context)
.setSmallIcon(icon)
.setVibrate(new long[]{1000, 1000, 1000, 1000, 1000, 1000})
.setContentTitle(title)
.setContentText(content)
.setStyle(bigStyle.bigText(content))
.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), background))
.build();
在我设置的手表清单中:
<uses-permission android:name="android.permission.VIBRATE"/>
不幸的是,没有振动。我该如何解决?
谢谢。