gpt4 book ai didi

Android 在 1 小时后执行一个函数

转载 作者:太空宇宙 更新时间:2023-11-03 12:07:29 24 4
gpt4 key购买 nike

我有一个 android 应用程序,当他/她激活该应用程序时,我将用户的数据存储在数据库中。我的应用程序要求用户手动停止应用程序,以便从数据库中删除其条目以及在激活应用程序时继续运行的其他服务。

所以我想编写一个函数,该函数将在每小时后(当应用程序被激活时)执行,并向用户发出通知,只是提醒他/她正在运行的服务。如果用户忘记了停止服务,然后他们可以停止或继续服务。

执行此操作的最有效方法是什么。如果用户认为它可以运行一天左右,我不想以 1 小时为基础检查耗尽太多电池。请指教。谢谢:)

最佳答案

我建议代码是这样的。

// the scheduler
protected FunctionEveryHour scheduler;


// method to schedule your actions
private void scheduleEveryOneHour(){

PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0,
new Intent(WAKE_UP_AFTER_ONE_HOUR),
PendingIntent.FLAG_UPDATE_CURRENT);

// wake up time every 1 hour
Calendar wakeUpTime = Calendar.getInstance();
wakeUpTime.add(Calendar.SECOND, 60 * 60);

AlarmManager aMgr = (AlarmManager) getSystemService(ALARM_SERVICE);
aMgr.set(AlarmManager.RTC_WAKEUP,
wakeUpTime.getTimeInMillis(),
pendingIntent);
}

//put this in the creation of service or if service is running long operations put this in onStartCommand

scheduler = new FunctionEveryHour();
registerReceiver(scheduler , new IntentFilter(WAKE_UP_AFTER_ONE_HOUR));

// broadcastreceiver to handle your work
class FunctionEveryHour extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
// if phone is lock use PowerManager to acquire lock

// your code to handle operations every one hour...

// after that call again your method to schedule again
// if you have boolean if the user doesnt want to continue
// create a Preference or store it and retrieve it here like
boolean mContinue = getUserPreference(USER_CONTINUE_OR_NOT);//

if(mContinue){
scheduleEveryOneHour();
}
}
}

希望对您有所帮助:)

关于Android 在 1 小时后执行一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25375968/

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