I have the following date
Date now = new Date(System.currentTimeMillis());
At the moment, when i display it in a listview, it has a value of
2014-07-30
How can i specify the date object to be in the following format?
2014-07-30 21:30:30.252
Is it possible to create a date object that has this format or is it a case of formatting the date object in the view?
thanks in advance