Android 小工具--获取系统时间

1.DataUtil类代码

/**
 * 获取时间工具类
 * */
public class DataUtil {
    
    

    public static String DATA (){
    
    

        SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//获取当前时间
        Date date = new Date(System.currentTimeMillis());
        return sd.format(date);

    }
}

2.布局文件

就是一个文本框

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

3.java代码


public class MainActivity extends AppCompatActivity {
    
    

    TextView textView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
    
    
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView=findViewById(R.id.textView);
        textView.setText(DataUtil.DATA());
    }
}

运行
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_46526828/article/details/108928991