我正在制作一个基本的通知应用程序,只想将计时器集成到它。 我已准备好基本通知。
如何使用setUsesChronometer();
添加计时器还有我如何使用setVibrate()方法?
答案 0 :(得分:1)
无论您在何处创建通知,都可以添加以下行以将天文台数据添加到通知中。
long elapsedTime = SystemClock.elapsedRealtime() - mChronometer.getBase();
notification.setWhen(System.currentTimeMillis()- elapsedTime);
notification.setUsesChronometer(true);
对于振动,您需要定义振动模式 -
.setVibrate(new long[]{500,1000}) //vibrates at 5000 ms and 1 second.