gpt4 book ai didi

Android - 获取日期到 textview

转载 作者:行者123 更新时间:2023-11-30 00:35:46 43 4
gpt4 key购买 nike

首先让我说是的,我对此进行了大量研究并使用了多种解决方案,但没有任何效果。

所以我试图将昨天的日期放入 TextView 中。我正在使用这段代码:

Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MMMM/d");
String strDate = sdf.format(cal.getTime());
tvDate.setText(strDate);

(我知道这会返回今天的日期,但此时我只是想得到任何东西)

发生的事情是,一旦我从上一个 Activity 转到这个 Activity ,它就会立即关闭。如果我评论中间的 3 行并将 setText 设置为随机字符串,如“bla bla”, Activity 将运行并正确显示。 Android Studio 没有在其中显示任何错误,所以我对发生了什么一无所知。

我已经尝试了以下帖子中的所有解决方案,但都没有成功,所以我只能想象我缺少一些配置。1 - Android get current date and show it in TextView2 - Get current time and date on Android3 - Display the current time and date in an Android application

我也查看了一些 Youtube 视频,但没有找到答案。

你能帮忙吗?

最佳答案

我测试了你的代码,它对我来说工作正常,返回 2017/April/16。确保类文件顶部的 import 语句是正确的。它们应该是:

import java.text.SimpleDateFormat;
import java.util.Calendar;

要获取昨天的日期,请添加以下行:

cal.add(Calendar.DATE, -1);

关于Android - 获取日期到 textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43436656/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com