Answers for "how to get the date in android studio"

1

how to get current date time in android

String currentDateTimeString = java.text.DateFormat.getDateTimeInstance().format(new Date());

// textView is the TextView view that should display it
textView.setText(currentDateTimeString);
Posted by: Guest on February-26-2021
-2

code to get date and time in android

SimpleDateFormat.getTimeInstance().format(Date())
Posted by: Guest on June-17-2020

Code answers related to "how to get the date in android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language