我正在从 Cloud Firestore 读取数据,其中之一是时间戳。那么如何在 SimpleDateFormat 的活动中将该时间戳设置为 TextView。
1 回答
慕妹3242003
TA贡献1824条经验 获得超6个赞
您可以先timeStamp使用如下代码将日期格式转换为实际日期:
private String getDate(long time) {
Calendar cal = Calendar.getInstance(Locale.ENGLISH);
cal.setTimeInMillis(time);
String date = DateFormat.format("dd-MM-yyyy", cal).toString();
return date;
}
现在您可以使用setText()方法将此日期设置为 textView ,使用如下代码:
textView.setText(getDate(timestamp));
这里timeStamp可以是您从 Firebase 云 Firestore 中检索到的时间戳。
添加回答
举报
0/150
提交
取消