Skip to content

Instantly share code, notes, and snippets.

View Sweeper777's full-sized avatar
🎯
Focusing

Mulang Su Sweeper777

🎯
Focusing
View GitHub Profile
@Sweeper777
Sweeper777 / Timer.java
Created August 10, 2016 23:43
A Timer using android.os.Handler, similar to a java.swing.Timer
import android.os.Handler;
public class Timer {
private Handler handler;
private boolean paused;
private int interval;
private Runnable task = new Runnable () {
@Override