gpt4 book ai didi

android - 不确定我是否需要这里的 WakeLock

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

我的应用程序有一项服务,基本上可以解析 X 数量的 RSS 提要。大多数提要都相当小,但有些提要的大小可能在 1MB 左右。我在服务的 AsyncTask 中解析它们。解析可能相当耗时,具体取决于用户的连接和提要数量,但我认为最多不会超过一两分钟。在服务中使用唤醒锁是个好主意吗?

到目前为止,这是我的代码。不确定这是否是设置服务的最佳方式:

public class MainService extends Service  
{
private WakeLock mWakeLock;

@Override
public void onCreate()
{
handleIntent();
}

@Override
public int onStartCommand(final Intent intent, final int flags, final int startId)
{
return START_STICKY;
}

@Override
public void onStart(final Intent intent, final int startId) {
handleIntent();
}

protected void handleIntent()
{
// obtain the wake lock
final PowerManager pm = (PowerManager)getSystemService(POWER_SERVICE);
mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "My Tag");
mWakeLock.acquire();

if (!((ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE)).getBackgroundDataSetting())
{
stopSelf();
return;
}

new AsyncParsingTask().execute();
}

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

mWakeLock.release();

}
}

最佳答案

Is it a good idea to use a WakeLock in the service?

是的,如果让设备进入休眠状态可能会给您带来问题。我建议您使用我的 WakefulIntentService , 不过,因为在处理 WakeLock 时有很多棘手的案例对象。您也不需要弄乱自己的 AsyncTaskstopSelf() ,因为这些将由 IntentService 为您处理(WakefulIntentService 从中继承)。

关于android - 不确定我是否需要这里的 WakeLock,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9761795/

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