gpt4 book ai didi

android - 如何做(或避免)在 Android 应用程序中永久运行服务?

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:05 25 4
gpt4 key购买 nike

这个问题是在如何编写好的程序这一更具哲学意义的问题与如何保护电池和系统资源这一基于事实的问题之间取得平衡。具体来说,它是关于 Android 服务的,为了执行所需的任务,必须在手机的后台永久运行。

在我的例子中,我有几个服务在后台运行。一个扫描手机是否连接到 WiFi,如果是,则设置一个变量,一个检查位置并在找到足够精确的位置时更新位置,一个检查接近传感器,一个分析噪音水平,在检查 RSS-Feed 的更新...

该应用程序有几个问题,我认为它们可能源于此设计决策。大多数情况下,(除了通过 SensorEventListener 提供更新的位置服务和接近传感器)我所有服务的架构如下所示

public class ArchetypicalService extends Service
{
Checker checker;

public SharedPreferences prefs;
public final static String PREFS = Constants.PREFS;

@Override
public IBinder onBind(Intent intent)
{
return null;
}

@Override
public void onCreate()
{
prefs = getSharedPreferences(PREFS, 0);
}

@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
checker = new Checker();
checker.run();
return START_STICKY;
}

@Override
public void onDestroy()
{
super.onDestroy();
}

private class Checker implements Runnable
{
private Handler handler = new Handler();
public static final int checkingDelay = 1000; // this number varies depending on what purpose this service has
@Override
public void run()
{
//what happends here depends on what the service does
handler.postDelayed(this, checkingDelay);
}
}
}

服务在应用程序启动时启动。像这样:

Intent intent = new Intent(this,ArchetypicalService.class);
startService(intent);

感谢 START_STICKY,即使我们停止 Activity ,该服务仍将继续运行。当我写这本书时,这一切对我来说都像是教科书,但我使用 android 的次数越多,我就越会看到博客条目告诉我不应该实现永久运行的服务。除了糟糕的风格之外,它们还使应用程序更有可能崩溃并耗尽电池和手机资源。这可能是对的:我的应用经常崩溃并耗尽电池。

所以,我的问题是:如果必须在后台定期执行一项功能,例如传感器扫描或检查互联网上的数据,即使所有 Activity 都已关闭,是否有更好的方法来实现它?(虽然我欢迎所有的答案或想法,但我更欢迎那些提供一些有用的示例代码的人)

最佳答案

If a functionality, like a sensor sweep or checking data on the internet, has to be done regularly in the background, even if all activities have been closed, is there any better way to implement it?

使用 AlarmManager 安排工作定期发生。

例如,以“检查 RSS-Feed 的更新”为例。将服务保留在内存中,摆弄它的虚拟拇指,等待时间流逝,直到再次检查 RSS 提要,这是荒谬的。在其他平台上,您可以使用 cron 或 Windows Scheduled Tasks 之类的东西——在 Android 上,等价物是 AlarmManager

几乎任何情况下,流程是“做工作,等待一些固定的时间,做工作,等待一些固定的时间,......”应该使用 AlarmManagerIntentService,后者为您提供后台线程并在工作完成时自动关闭。这样,您只有在主动为用户提供值(value)时才会消耗 RAM。

关于android - 如何做(或避免)在 Android 应用程序中永久运行服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12933027/

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