What I am looking to do is create a timer that starts counting up from a given timestamp basically telling my how long it has been since this point in time.
an example timestamp would be this 1365679237087
I was looking at the Chronometer
but if i set the base to the timestamp it gives me all these ascii characters instead of counting up from the time.
example:
timer = (Chronometer)v.findViewById(R.id.chronometer1);
timer.setBase(1365679237087);
timer.start();
is that not how to use the chronometer?
is there another solution to get what I want to do