Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在按下按钮后计算时间,这样我就可以跟踪已经过去了这么多。我已经搜索过它,发现 android timer 可以做到这一点,但我无法得到任何有用的答案。
提前致谢。
在开始按钮按下:
long start = System.currentTimeMillis();
在更新/结束按钮按下:
long runTime = System.currentTimeMillis() - start;
如果您只想计算两个事件之间的时间差,那么您可以使用 System.currentTimeMillis();.
System.currentTimeMillis();