How can I get the current time and date of android app?
|
|
|
Or you can use
and so on. There are plenty of constants in Calendar for everything you need. :) |
|||||||||||||
|
|
You can use android.text.format.Time:
From the reference linked above:
|
|||
|
If you want to get the date and time in a specific pattern you can use the following:
|
||||
|
|
Actually, it's safer to set the current timezone set on the device with
Then, you can get all the date fields you want, like, for example:
See android.text.format.Time class for all the details. |
|||
|
|
|
For Current Date and Time
Which outputs:
|
||||
|
|
To ge the current time you can use
And as mentioned by others to create a time
|
|||
|
|
|
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:
|
|||||||||||||||
|
|
Easy, you can dissect the time to get separate values for current time, as follows:
Same goes for the date, as follows:
|
||||
|
|
|
You can also use android.os.SystemClock. For example SystemClock.elapsedRealtime() will give you more accurate time readings when the phone is asleep. |
|||
|
|
|
|||
|
|
This will give you, for example, 12:32. Remember to import android.text.format.Time; |
|||
|
|
|
|||
|
|
