Android - 如何获取创建按钮的时间

时间:2014-03-09 19:14:27

标签: java android c++

Android中是否有任何功能可以在布局中创建(显示)Button时返回时间。我现在正在使用类似的东西,但我不知道,它回归的实际时间。

frameLay.addView(okButton,layoutParams); Date date1 = new Date(); setTimeCreate(date1.getTime());

也许C / C ++中有一些函数,我可以使用它。

PS:对不起我的英语,我不是母语为英语的人

2 个答案:

答案 0 :(得分:0)

使用:

System.currentTimeMillis() - returns current time in milliseconds.

答案 1 :(得分:0)

根据所需的准确程度,您可以使用以下两种方法之一:

System.nanoTime()

System.currentTimeMillis()