Note that there are some explanatory texts on larger screens.

plurals
  1. POChange Timer schedule scheduleAtFixedRate
    primarykey
    data
    text
    <p>I have TextView to update time frequently that is working fine, but the problem is that I want to change schedule time for different conditions but I am unable to change schedule time. It continue to time set at initially.</p> <pre><code>private Long mPeriod = Long.parseLong("8000"); public void startTimer() { Logger.i("startTimer", "startTimer"); stopTimer(); mTimer = new Timer(); mTimerTask = new TimerTask() { @Override public void run() { // postInvalidate(); Logger.i("timer", "timer"); Thread th = new Thread(new Runnable() { @Override public void run() { Logger.i("thread", "thread"); Long ll = System.currentTimeMillis(); mRelativeTime = DateUtils.getRelativeTimeSpanString( Long.parseLong(mText + ""), ll, 0); Long diff = ll - Long.parseLong(mText + ""); // long diffSeconds = diff / 1000 % 60; long diffMinutes = diff / (60 * 1000) % 60; long diffHours = diff / (60 * 60 * 1000) % 60; Logger.d("diffMinutes", diffMinutes + ""); Logger.d("diffHours", diffHours + ""); if (diffMinutes == 0 &amp;&amp; diffHours == 0) { Logger.i("5000", "5000"); mPeriod = Long.parseLong("5000"); } else if (diffMinutes &lt; 60 &amp;&amp; diffMinutes != 0 &amp;&amp; diffHours == 0) { Logger.i("30000", "30000"); mPeriod = Long.parseLong("30000"); } else if (diffHours &gt; 0) { Logger.i("600000", "600000"); mPeriod = Long.parseLong("600000"); } **// This line is not working... mTimer.scheduleAtFixedRate(mTimerTask, 0, mPeriod);** // Change text handler.sendEmptyMessage(0); } }); th.run(); } }; mTimer.scheduleAtFixedRate(mTimerTask, 0, mPeriod); } public void stopTimer() { if (mTimer != null) { mTimer.cancel(); mTimer = null; } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload