Android 时间戳无法正常工作
Android TimeStamp not working correctly
所以我基本上是在尝试实现时间戳。
我相信我有正确的代码,但我从时间戳中得到的时间一直是 1970 年 1 月 1 日。
我怎样才能让它在他们的时钟上检索设备时间?
阅读 android 文档时我确信这会起作用,但不知道哪里出了问题?
我认为问题出在以下代码上:
public void handleMessage(Message msg) {
super.handleMessage(msg);
textView.setText(DateUtils
.getRelativeTimeSpanString(timestamp));
}
I believe i have the correct code but the time i get from the timestamp is 1 Jan 1970 all the time
据推测,timestamp
是 0
。
How do i make it so it retrieves the device time on their clock?
传入 System.currentTimeMillis()
,而不是 0
。
所以我基本上是在尝试实现时间戳。
我相信我有正确的代码,但我从时间戳中得到的时间一直是 1970 年 1 月 1 日。
我怎样才能让它在他们的时钟上检索设备时间?
阅读 android 文档时我确信这会起作用,但不知道哪里出了问题?
我认为问题出在以下代码上:
public void handleMessage(Message msg) {
super.handleMessage(msg);
textView.setText(DateUtils
.getRelativeTimeSpanString(timestamp));
}
I believe i have the correct code but the time i get from the timestamp is 1 Jan 1970 all the time
据推测,timestamp
是 0
。
How do i make it so it retrieves the device time on their clock?
传入 System.currentTimeMillis()
,而不是 0
。