Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8158607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T17:39:36+00:00 2026-06-06T17:39:36+00:00

I need to execute code at intervals, sometimes 10 seconds, sometimes 5 minutes. The

  • 0

I need to execute code at intervals, sometimes 10 seconds, sometimes 5 minutes. The code should be executed at exact 10 seconds from start, then at exact 5 minutes and 10 seconds from start, etc.
A Chronometer is ticking along from the start, so the execution time must be accurate.

Using Handler.postDelayed does not work, because the code to execute could take some time. The next execution of the code could be late when that happens.

When I wanted to implement AlarmManager, I saw the note

The Alarm Manager is intended for cases where you want to have your
application code run at a specific time, even if your application is
not currently running. For normal timing operations (ticks, timeouts,
etc) it is easier and much more efficient to use Handler.

So I’m a bit confused, how should I do this to guarantee correct execution?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T17:39:39+00:00Added an answer on June 6, 2026 at 5:39 pm

    As Chris stated, there’s no such thing as exact timing in Android.

    But you could try it like this to come near realtime…

    some Pseudocode for waiting 5s:

    class mJob implements Runnable{
       public void run(){
          while(System.currentTimeMillis()<myExactTime){ //poll for your time
             Thread.sleep(1);
          }
          //Ok, we are as near as we'll ever get
          //call here your 'realtime' function or whatever you need
       }
    }
    
     mHandler.postDelayed(mJob,4950); //the closer to 5000, the better for the cpu but you could miss your `myExactTime`
    

    I don’t now how exact this is, you’ll just have to try it. But I see no other way to become more ‘realtime’ with the normal SDK. You could even remove the sleep(1) to become even closer to your myExactTime.

    For the next call use something like this (scratch):

    nextCallDelayInMillis = starttimeInMillis+No1_Delay+No2_Delay-System.currentTimeMillis();

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need execute some code before Windows shutdown process each time. So, I want
I have a need to allow my users to execute .NET code that they
Can the CLR 4.0 execute CLR 2.0 IL without the need for source code
I need to execute a SQL Query between two databases. Example: SELECT * from
I have an NSTimer object that I need to repeatedly execute. The code that
I need to execute a command line from a .NET windows application. I tried
I have a C# Class. I need to execute its instance at regular intervals
I need to execute some code after each deserialization is done on a POJO's
I need to execute a piece of JavaScript code say, each 2000 milliseconds. setTimeout('moveItem()',2000)
I need execute an SQL query in ORACLE it takes a certain amount of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.