作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让手机长时间振动(例如 2 分钟),但振动时间非常短。我正在使用这段代码
Vibrator mVibrate = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
mVibrate.vibrate(2*60*1000); // 2 Minutes
如何振动 2 或 3 分钟?
最佳答案
长振动还有一种方法如下,
Vibrator mVibrate = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
long pattern[]={0,800,200,1200,300,2000,400,4000};
// 2nd argument is for repetition pass -1 if you do not want to repeat the Vibrate
mVibrate.vibrate(pattern,-1);
长时间震动可以增加图案的排列。
关于Android 振动服务(振动器)长时间不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17143509/
我想让手机长时间振动(例如 2 分钟),但振动时间非常短。我正在使用这段代码 Vibrator mVibrate = (Vibrator) getSystemService(Context.VIBRA
我是一名优秀的程序员,十分优秀!