问题描述
- notification如何设定通知响多长时间
-
我希望通知播放15S或者30S,或者2遍或者3遍什么的。这个能不能通过notification里面的值设定呢
解决方案
类似这种定时
http://qq361119908.iteye.com/blog/634605
自己做一个notification封装类,包含定时启动和定时取消就行了。
NotificationManager manger = (NotificationManager)this.getSystemService(NOTIFICATION_SERVICE);
manger.cancel(10);//注意一下这个id生成比重复。
解决方案二:
不行,需要用定时器。Timer
时间: 2024-11-03 04:43:23