I\'m trying to understand the code here , specifically the anonymous class
private Runnable mUpdateTimeTask = new Runnable() { public void run() { final l
Runnable is just an interface, which provides the method run. Threads are implementations and use Runnable to call the method run().