I want to be able to show the elapsed time in a textview or Chronometer held in a "Statistics" class since pressing a button located in another class. What would be the easiest way to implement this?.
Thanks
I want to be able to show the elapsed time in a textview or Chronometer held in a "Statistics" class since pressing a button located in another class. What would be the easiest way to implement this?.
Thanks
Set up a tenth-second repeating timer and do the view update in a runnable handler.
What about setting a variable =
System.currentTimeMillis()
when you inflate the view? And at onDestroy substract that time from the current time ?