[android-developers] Re: [Timing] How to measure time interval for certain process?

2008-10-21 Thread tauntz
I'm not sure that I understand your question correctly but if you want to measure a time interval in real time (eg in ms) then go for android.os.SystemClock.uptimeMillis() or android.os.SystemClock.elapsedRealtime() not System.currentTimeMillis() android.os.SystemClock.uptimeMillis() -

[android-developers] Re: [Timing] How to measure time interval for certain process?

2008-10-21 Thread Andy Quan
Thanks. This seems like a hit! On Oct 21, 3:38 pm, tauntz [EMAIL PROTECTED] wrote: I'm not sure that I understand your question correctly but if you want to measure a time interval in real time (eg in ms) then go for android.os.SystemClock.uptimeMillis() or