How do I display the current date and time in an Android application?
|
|
|
Okay, not that hard as there are several methods to do this. I assume you want to put the current date & time into a
There is more to read in the documentation that can easily be found here . There you'll find more information on how to change the format used for conversion. |
|||||||||||||||||||
|
|
|||
|
|
|
||||
|
The obvious choices for displaying the time are the For example, the following layout:
Looks like this:
|
|||||||||
|
|
My own working solution:
Hope this helps! |
|||||||||||||
|
|
If you want to get the date and time in a specific pattern you can use
|
|||
|
|
|
From How to get full date with correct format?: Please, use
to get valid time and date formats in sense of current user settings (12/24 time format, for example).
|
||||
|
|
This will give date time format like 2010-05-24T18:13:00 |
|||
|
|
|
This would give the current date and time:
|
||||
|
|
|
Try below code:-
|
|||
|
|


