Answers for "how to get current date as date not sttring in android studio"

9

how to set current date in android studio

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
0

get today's date java android studio

dateFormat = new SimpleDateFormat("MM/dd/yyyy");date = simpleDateFormat.format(calendar.getTime());dateTimeDisplay.setText(date);
Posted by: Guest on March-12-2021

Code answers related to "how to get current date as date not sttring in android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language