Skip to content Skip to sidebar Skip to footer

Best Way To Update Textview, Every Minute, On The Minute

My problem is similar to this one, How to update a widget every minute, however I only want to update TextView of the UI. I need access to the time so unfortunately can not simply

Solution 1:

The accepted answer does not respond specifically to the question. The OP asks for a way to receive some sort of event on time (at the system clock minute and 00 seconds).

Using a Timer is not the right way to do this. It's not only overkill, but you must resort to some tricks to make it right.

The right way to do this (ie. update a TextView showing the time as HH:mm) is to use BroadcastReceiver like this :

BroadcastReceiver _broadcastReceiver;
private final SimpleDateFormat _sdfWatchTime = newSimpleDateFormat("HH:mm");
privateTextView _tvTime;

@OverridepublicvoidonStart() {
    super.onStart();
    _broadcastReceiver = newBroadcastReceiver() {
            @OverridepublicvoidonReceive(Context ctx, Intent intent) {
                if (intent.getAction().compareTo(Intent.ACTION_TIME_TICK) == 0)
                    _tvTime.setText(_sdfWatchTime.format(newDate()));
            }
        };

    registerReceiver(_broadcastReceiver, newIntentFilter(Intent.ACTION_TIME_TICK));
}

@OverridepublicvoidonStop() {
    super.onStop();
    if (_broadcastReceiver != null)
        unregisterReceiver(_broadcastReceiver);
}

The system will send this broadcast event at the exact beginning of every minutes based on system clock. Don't forget however to initialize your TextView beforehand (to current system time) since it is likely you will pop your UI in the middle of a minute and the TextView won't be updated until the next minute happens.

Solution 2:

Solution 3:

have you tried postDelayed()

Solution 4:

This is what I used :

int secsUntilOnTheMinute=60-Calendar.getInstance().get(Calendar.SECOND);

timer.scheduleAtFixedRate(new TimerTask() {
    @Override
    publicvoidrun() {
        updateSendTimesHandler.sendEmptyMessage(0);
    }
}, secsUntilOnTheMinute*1000, 60000);

Post a Comment for "Best Way To Update Textview, Every Minute, On The Minute"