开发者

Android scheduling or timer APIme

开发者 https://www.devze.com 2023-02-16 02:53 出处:网络
Pardon me if m asking some discussion based questions. I am completely new to android environment and I am developing an android based application wherein i need to apply some modification in messagin

Pardon me if m asking some discussion based questions. I am completely new to android environment and I am developing an android based application wherein i need to apply some modification in messaging system for my project. therein i need to employ a timer facility for the outgoing messages where user could be able to time his message so that at that scheduled time, the sms should go automatically. I want to know which m开发者_高级运维essaging API will help me in implementing so. I can sense that dis is not upto the mark question to be asked but i searched on every site but all work in vain. Hoping to get a positive reply from your side.


You should have a look at ScheduledExecutorService

i think this is what you are searching for. This service is able to execute tasks based on TimeUnits in the background.


You might also want to check out AlarmManager. You can use it to send a custom Intent at some time in the future. It might be better than other kinds of timers (depending on your situation), because it will cause the phone to wake up when the intent is delivered. Otherwise, your code might not run if the CPU is asleep.

0

精彩评论

暂无评论...
验证码 换一张
取 消