gpt4 book ai didi

Android 振动服务(振动器)长时间不工作

转载 作者:行者123 更新时间:2023-11-29 00:29:08 26 4
gpt4 key购买 nike

我想让手机长时间振动(例如 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com