我想了解如何在 Android Emulator 上显示每秒更新的确切时间。我知道如何使用变量从字符串中提取时间。
String getTheTimeAndDate = DateFormat.getDateInstance().format(new Date());
我使用的是TextView
所以当我调试它时,它会显示今天的日期和时间(没有错误),但它不会以秒为单位计数。我希望它不断更新,以便我可以看到确切的当前时间和日期刷新。我知道它必须以某种类型的 for 循环或其他方式完成。?
这是我目前拥有的:
TextView textView;
@Override
public void onCreate(Bundle frankyTwoToes) {
super.onCreate(frankyTwoToes);
setContentView(R.layout.activity_main);
textView=(TextView)findViewById(R.id.textView);
String currentTimeAndDate = DateFormat.getDateInstance().format(new Date());
}