我正在使用波纹管代码在我的Android手机上显示通知.我想减少用于显示通知的时间.现在,它花费大约2秒钟来显示,然后它被隐藏了.我想把时间从2秒减少到1秒.可能吗?
Notification notification = new NotificationCompat.Builder(context) .setContentTitle(context.getString(R.string.app_name)) .setContentText("Notification") .setautoCancel(false) .setPriority(Notification.PRIORITY_MAX) .setSmallicon(R.mipmap.ic_launcher) .setDefaults(Notification.DEFAulT_SOUND | Notification.DEFAulT_VIBRATE) .setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher)) .build();notificationmanager notificationmanager = getnotificationmanager(context);notificationmanager.notify(SAFER_disCONNECTED_NOTIFICATION_ID, notification);
解决方法:
Now, it spends about 2 seconds for showing, then it is hIDden.
对于在抬头模式下显示通知的时间量没有特别保证,我认为这是你所指的.
例如,默认情况下,它将在AndroID 4.4及更早版本上显示0秒,这本身不支持抬头通知.但是,用户可以使用NotificationListenerService安装应用程序,但该服务可能会显示通知,但无论如何,它都需要.
Is it possible?
不,对不起这是在显示通知的代码的控制之下.
总结以上是内存溢出为你收集整理的是否可以缩短Android中显示的通知时间?全部内容,希望文章能够帮你解决是否可以缩短Android中显示的通知时间?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)