gpt4 book ai didi

android - 如何使用android中的Broadcast Receiver来振动设备?

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

public class MyBroadcastReceiver extends BroadcastReceiver{
public void onReceive(Context context , Intent intent){
Toast.makeText(context, "Your time is up", Toast.LENGTH_LONG).show();
Vibrator vibrator;
// ERROR here (vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
vibrator.vibrate(2000);
}
}

在使用Alarm时使用Broadcast Receiver振动设备时,出现如上图所示的错误。这里出错的可能原因是什么?

最佳答案

试试这个

Vibrator v;
v=(Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(3000);

关于android - 如何使用android中的Broadcast Receiver来振动设备?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10877597/

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