Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get the current time and date of android app?

share|improve this question

13 Answers

up vote 180 down vote accepted

Or you can use

Calendar c = Calendar.getInstance(); 
int seconds = c.get(Calendar.SECOND)

and so on. There are plenty of constants in Calendar for everything you need. :)

Edit: Calendar class documentation

share|improve this answer
5  
+1 This was very helpful. Being new it's all these little tidbits we need ... I'm using Calendar to get the Julian date. Much easier than getting milliseconds and figuring out if the value equals today ;) – Bill Mote Apr 6 '11 at 14:50
Thanks alextsc this what i need – Krishna Sep 21 '11 at 21:37
But where does this pull the date and time from? the android device setting itself? – Kyle May 17 '12 at 20:29
1  
@Kyle Yes, it's based on the device time settings/timezone. Quote from the doc: "Calendar's getInstance method returns a calendar whose locale is based on system settings and whose time fields have been initialized with the current date and time" - (above the first samplecode line in the class documentation). – user658042 May 20 '12 at 12:21

You can use android.text.format.Time:

Time now = new Time();
now.setToNow();

From the reference linked above:

The Time class is a faster replacement for the java.util.Calendar and java.util.GregorianCalendar classes. An instance of the Time class represents a moment in time, specified with second precision.

share|improve this answer
4  
+1 for using Android APIs! – Jonny Nov 18 '12 at 19:07
This is actually a better answer then the currently accepted one (using Calendar) – marsbear Apr 7 at 7:55

If you want to get the date and time in a specific pattern you can use the following:

SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
String currentDateandTime = sdf.format(new Date());
share|improve this answer
This will give the time in UTC, should adopt to timezones. – Andras Balázs Lajtha Apr 21 '12 at 5:25

Actually, it's safer to set the current timezone set on the device with Time.getCurrentTimezone(), or else you will get the current time in UTC.

Time today = new Time(Time.getCurrentTimezone());
today.setToNow();

Then, you can get all the date fields you want, like, for example:

textViewDay.setText(today.monthDay);             // Day of the month (0-31)
textViewMonth.setText(today.month);              // Month (0-11)
textViewYear.setText(today.year);                // Year 
textViewTime.setText(today.format("%k:%M:%S"));  // Current time

See android.text.format.Time class for all the details.

share|improve this answer

For Current Date and Time

String mydate = java.text.DateFormat.getDateTimeInstance().format(Calendar.getInstance().getTime());

Which outputs:

Feb 27, 2012 5:41:23 PM
share|improve this answer
i got the the current date,day and time of the system but time is not changing.i wnat to increase time seconds by seconds.how can i do? – sunshine Oct 1 '12 at 6:23

To ge the current time you can use System.currentTimeMillis() which is standard in Java. Then you can use it to create a date

Date currentDate = new Date(System.currentTimeMillis());

And as mentioned by others to create a time

Time currentTime = new Time();
currentTime.setToNow();
share|improve this answer

There are several options as android is mainly java but if you wish to write it in a textView, the following code would do the trick:

String currentDateTimeString = DateFormat.getDateInstance().format(new Date());

// textView is the TextView view that should display it
textView.setText(currentDateTimeString);
share|improve this answer
6  
You should use Calendar or GregorianCalendar. The Date class is deprecated. – Joseph Earl Mar 20 '11 at 16:22
Thanks mate :) I did have no idea at all about that – eLobato Mar 20 '11 at 16:44
5  
According to the Date() reference documentation (developer.android.com/reference/java/util/Date.html) there is nothing referring to the Date() class being deprecated - however several methods and constructors are deprecated. – Zac Apr 16 '11 at 18:40
2  
This will produce incorrect result in sense of current user settings (12/24 time format, for example). Use android.text.format.DateFormat.getTimeFormat(Context context) to get DateFormat for current user settings. – wonder.mice Oct 27 '11 at 20:58

Easy, you can dissect the time to get separate values for current time, as follows:

Calendar cal = Calendar.getInstance(); 

  int millisecond = cal.get(Calendar.MILLISECOND);
  int second = cal.get(Calendar.SECOND);
  int minute = cal.get(Calendar.MINUTE);
        //12 hour format
  int hour = cal.get(Calendar.HOUR);
        //24 hour format
  int hourofday = cal.get(Calendar.HOUR_OF_DAY);

Same goes for the date, as follows:

Calendar cal = Calendar.getInstance(); 

  int dayofyear = cal.get(Calendar.DAY_OF_YEAR);
  int year = cal.get(Calendar.YEAR);
  int dayofweek = cal.get(Calendar.DAY_OF_WEEK);
  int dayofmonth = cal.get(Calendar.DAY_OF_MONTH);
share|improve this answer

You can also use android.os.SystemClock. For example SystemClock.elapsedRealtime() will give you more accurate time readings when the phone is asleep.

share|improve this answer
final Calendar c = Calendar.getInstance();
    int mYear = c.get(Calendar.YEAR);
    int mMonth = c.get(Calendar.MONTH);
    int mDay = c.get(Calendar.DAY_OF_MONTH);

textView.setText(""+mDay+"-"+mMonth+"-"+mYear);
share|improve this answer

Time now = new Time(); now.setToNow();

works for me as well.

share|improve this answer
Time time = new Time();
time.setToNow();
System.out.println("time: " + time.hour+":"+time.minute);

This will give you, for example, 12:32.

Remember to import android.text.format.Time;

share|improve this answer
SimpleDateFormat dateFormat = new SimpleDateFormat(
            "yyyy/MM/dd HH:mm:ss");
    Calendar cal = Calendar.getInstance();
    System.out.println("time => " + dateFormat.format(cal.getTime()));

    String time_str = dateFormat.format(cal.getTime());

    String[] s = time_str.split(" ");

    for (int i = 0; i < s.length; i++) {
         System.out.println("date  => " + s[i]);
    }

    int year_sys = Integer.parseInt(s[0].split("/")[0]);
    int month_sys = Integer.parseInt(s[0].split("/")[1]);
    int day_sys = Integer.parseInt(s[0].split("/")[2]);

    int hour_sys = Integer.parseInt(s[1].split(":")[0]);
    int min_sys = Integer.parseInt(s[1].split(":")[1]);

    System.out.println("year_sys  => " + year_sys);
    System.out.println("month_sys  => " + month_sys);
    System.out.println("day_sys  => " + day_sys);

    System.out.println("hour_sys  => " + hour_sys);
    System.out.println("min_sys  => " + min_sys);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.