Android Studio 中获取时间
先把这个包导入import java.text.SimpleDateFormat;
然后自己定义一个TextView,我的叫current_time
public class resultActivity extends AppCompatActivity {
private TextView mTextView,current_time;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_result);
current_time = findViewById(R.id.current_time);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date curDate = new Date(System.currentTimeMillis());
//获取当前时间
String str = formatter.format(curDate);
current_time.setText(str);
}
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
这句话是可以按自己需求修改的,比如自己不想要后面的秒,就把ss删去
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。