gpt4 book ai didi

用于定期传感器读取的 Android AlarmManager

转载 作者:行者123 更新时间:2023-12-03 22:22:27 25 4
gpt4 key购买 nike

我的任务是定期读取后端的手机传感器(例如 WiFi、加速度计)。

我目前的解决方案是使用 AlarmManager。

具体来说,我们有:

在“主”程序(一个 Activity )中,我们使用 PendingIntent.getService:

公共(public)类主要扩展 Activity {
...
Intent intent = new Intent(this, AutoLogging.class);
mAlarmSender = PendingIntent.getService(this, 0, intent, 0);
上午 = (AlarmManager)getSystemService(ALARM_SERVICE);
am.setRepeating(AlarmManager.RTC, 0, 5*1000, mAlarmSender);
}

在“AutoLogging”程序(一项服务)中,我们会定期响应警报:

公共(public)类 AutoLogging 扩展服务 {
...
@覆盖
公共(public)无效 onCreate() {
Toast.makeText(this, "onCreate", Toast.LENGTH_SHORT).show();
}

@覆盖
公共(public)无效 onDestroy() {
super.onDestroy();
Toast.makeText(this, "onDestroy", Toast.LENGTH_SHORT).show();
}

@覆盖
公共(public) bool onUnbind( Intent Intent ){
Toast.makeText(this, "onUnbind", Toast.LENGTH_SHORT).show()
返回 super.onUnbind(intent);
}

@覆盖
公共(public)无效onStart( Intent Intent ,int startId){
super.onStart(intent, startId);
Toast.makeText(this, "onStart", Toast.LENGTH_SHORT).show();
//在此处读取传感器数据
}

@覆盖
公共(public)IBinder onBind( Intent Intent ){
Toast.makeText(this, "onBind", Toast.LENGTH_SHORT).show();
返回空值;
}
}

我的问题是:

当我使用这个报警服务时,每次报警只调用 OnCreate 和 OnStart。

我的问题是:

(1)我们需要调用OnDestroy(或者onBind,onUnbind)吗?

(2)这是使用AlarmManager的正确方法(与“大写接收器”相比)吗?

谢谢!
文森特

最佳答案

AlarmManager 仅使用挂起的 Intent 并执行 Intent 操作,即在您的情况下启动服务。使用 onCreate(如果尚未运行)创建警报到期服务,然后通过调用 onStart 启动。读取完传感器数据后,您可以使用 stopSelf() 停止服务,该服务最终将调用 onDestroy()。您不应在服务中显式调用 onDestroy()、onBind() 或 onUnBind()。

如果您将广播接收器与警报管理器一起使用,则必须在接收器的 onReceive 中启动此服务。在这种情况下,使用服务似乎适合我。

关于用于定期传感器读取的 Android AlarmManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4304386/

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