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

  • Home
  • SEARCH
  • 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 6641769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:50:59+00:00 2026-05-25T23:50:59+00:00

I have a Chronometer. There should be the time displayed. When i start the

  • 0

I have a Chronometer. There should be the time displayed. When i start the timer the time is always the same, but it should update

Calling:

                Log.e("XXX","OnClick");
                String[] array = clock.getText().toString().split(":");
                int ms = (Integer.valueOf(array[0])*60 + Integer.valueOf(array[1]))*60000;
                Log.e("XXX",String.valueOf(ms));
                MyTimer counter = new MyTimer(ms, 1000, Timer.this,clock);

                counter.start();

Timer:

public class MyTimer extends CountDownTimer {
    private Context con;
    private Chronometer clock;

    public MyTimer(long millisInFuture, long countDownInterval, Context context, Chronometer clock) {
        super(millisInFuture, countDownInterval);
        this.con = context;
        this.clock= clock;
        // TODO Auto-generated constructor stub
    }


    @Override
    public void onTick(long millisUntilFinished) {

        int seconds = (int) (millisUntilFinished / 1000) % 60 ;
        int minutes = (int) ((millisUntilFinished / (1000*60)) % 60);
        int hours   = (int) ((millisUntilFinished / (1000*60*60)) % 24);
        clock.setText( String.format("%02d:%02d:%02d", hours,minutes,seconds));
        Log.e("Timer", String.valueOf(millisUntilFinished));

    }

The problem is that the time in the chronometer is always the same. and the log(timer) also
don’t appear. Could it be that the refresh of the UI is too fast?

  • 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-05-25T23:51:00+00:00Added an answer on May 25, 2026 at 11:51 pm

    I’m not really confident with passing your context and view as an argument of your extended class. Maybe you should try this adaptation of your code (and get rid of your MyTimer class)?

    Log.e("XXX","OnClick");
    String[] array = clock.getText().toString().split(":");
    int ms = (Integer.valueOf(array[0])*60 + Integer.valueOf(array[1]))*60000;
    Log.e("XXX",String.valueOf(ms));
    
    new CountDownTimer(ms,1000){
        @Override
        public void onTick(long millisUntilFinished) {
    
            int seconds = (int) (millisUntilFinished / 1000) % 60 ;
            int minutes = (int) ((millisUntilFinished / (1000*60)) % 60);
            int hours   = (int) ((millisUntilFinished / (1000*60*60)) % 24);
            clock.setText( String.format("%02d:%02d:%02d", hours,minutes,seconds));
            Log.e("Timer", String.valueOf(millisUntilFinished));
    
        }
    }.start();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that has a chronometer, I need to set the start
All, I have a listview filled with Buttons that start and stop a chronometer
I have a timer that counts up from the time a user encounters that
For example: in the Activty A I have a Chronometer , I click on
have written this little class, which generates a UUID every time an object of
Have deployed numerous report parts which reference the same view however one of them
There are few built in ways to invoke a timer using the Android stack,
As always, I would appreciate very much if somebody out there could help me
Have converted devise new session from erb to Haml but doens't work, this is
Have searched the database but need to specifically sum(of hours flown or days off)in

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.