相关疑难解决方法(0)

Android 8.0的通知振动问题

我创建通知通道,以在Android 8.0中显示通知,如下所示

 NotificationChannel uploadChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_UPLOAD_ID,"Uploads", NotificationManager.IMPORTANCE_LOW);
 uploadChannel.enableLights(false);
 uploadChannel.setDescription("Uploads Channel");
 notificationManager.createNotificationChannel(uploadChannel);
Run Code Online (Sandbox Code Playgroud)

每当我显示通知手机振动很多次.我从通知通道禁用振动,如下所示

uploadChannel.enableVibration(false);
Run Code Online (Sandbox Code Playgroud)

我创建如下通知

 NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_UPLOAD_ID);
Run Code Online (Sandbox Code Playgroud)

但它不工作电话随着每个通知振动.

notifications android android-8.0-oreo

5
推荐指数
2
解决办法
5904
查看次数

标签 统计

android ×1

android-8.0-oreo ×1

notifications ×1