Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android countdown timer time

I've been using an android countdown timer sample to create a countdown to a certain date.

Time TimerSet = new Time();
        TimerSet.set(20, 8, 2012); //day month year
        TimerSet.normalize(true);
        long millis = TimerSet.toMillis(true);

        Time TimeNow = new Time();
        TimeNow.setToNow(); // set the date to Current Time
        TimeNow.normalize(true);
        long millis2 = TimeNow.toMillis(true);

        long millisset = millis - millis2; //subtract current from future to set the time remaining

        final int smillis = (int) (millis); //convert long to integer to display conversion results
        final int smillis2 = (int) (millis2);

        new CountDownTimer(millisset, 1000) {
            public void onTick(long millisUntilFinished) {

                // decompose difference into days, hours, minutes and seconds 
                int weeks = (int) ((millisUntilFinished / 1000) /
                        604800);
                int days = (int) ((millisUntilFinished / 1000) / 86400);
                int hours = (int) (((millisUntilFinished / 1000) - (days
                        * 86400)) / 3600);
                int minutes = (int) (((millisUntilFinished / 1000) - ((days
                        * 86400) + (hours * 3600))) / 60);
                int seconds = (int) ((millisUntilFinished / 1000) % 60);
                int millicn = (int) (millisUntilFinished / 1000);



                w.setText(" " +weeks);
                d.setText(" " +days);
                h.setText(" " +hours);
                m.setText(" " +minutes);
                s.setText(" " +seconds);
                mTextField.setText(smillis + " " + smillis2 + " " +
                        millicn + "Time remaining: " +weeks +"weeks " +days + " days " + hours
                        + " hours: " + minutes+ " minutes: "
                        + seconds + " seconds: " );

            }

            public void onFinish() {
                mTextField.setText("done!");
            }
        }.start();

i was wondering how can i set the time aswell as the date? currently it is ocunting down to midnight. i'd like it to be 15:00

thanks in advance

like image 889
Tuffy G Avatar asked Sep 18 '12 11:09

Tuffy G


1 Answers

Here's your problem:

timerSet.set(20, 8, 2012); //day month year

This sets the future date, but not the future time of day (instead, it sets the boolean allDay to true), so it defaults to 00:00.

From the android API:

set(int second, int minute, int hour, int monthDay, int month, int year)

So try

timerSet.set(0,0,15,20,8,2012)

for 15:00, August 20th, 2012.

like image 90
keyser Avatar answered Nov 03 '22 13:11

keyser