Created by Prakash Sharma
about 6 years ago
|
||
1. Run a code on a different thread for the infinite time. Thread thread = new Thread() { @Override public void run() { try { while (!thread.isInterrupted()) { Thread.sleep(1000); runOnUiThread(new Runnable() { @Override public void run() { // update TextView here! } }); } } catch (InterruptedException e) { } } }; thread.start();
Want to create your own Notes for free with GoConqr? Learn more.