我有一个自定义键盘,它在android marshmallow中运行良好,但在Android Nougat +设备中无效。 我在键盘上发出通知功能后出现问题。 我该怎么办?
nSidesf = new NotificationCompat.Builder(DungeonKey.this)
.setOngoing(false)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Dungeon Keys")
.setContentText("TIMES UP!!, Do your SIDES..")
.setAutoCancel(true)
//.setDefaults(Notification.DEFAULT_VIBRATE)
.setPriority(Notification.PRIORITY_HIGH);
if (Build.VERSION.SDK_INT >= 21) nSidesf.setVibrate(new long[0]);
nSidesManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
答案 0 :(得分:0)
我的问题已经解决了。这不是关于通知功能。我有一个选项可以打开另一个未安装在该设备中的应用程序。这导致应用程序在我运行时强制关闭。