Answers for "android studio get time and date"

4

how to get current date time in android

Calendar c = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strDate = sdf.format(c.getTime());
Log.d("Date","DATE : " + strDate)
Posted by: Guest on February-26-2021
2

how to get current date time in android

SimpleDateFormat sdf = new SimpleDateFormat("ddMMyyyy_HHmmss", Locale.getDefault());
                String currentDateandTime = sdf.format(new Date());
                System.out.println("currentDateandTime" + currentDateandTime);
Posted by: Guest on February-26-2021
-5

android studio get time

String currentTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()).format(new Date());
Posted by: Guest on September-08-2020
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 "android studio get time and date"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language