Posts

Showing posts from February, 2014

Freeware Fullscreen desktop clock application

Image
Desktop clock is a  simple freeware application that shows the fullscreen clock using your photos as background. The background changes every minute. Download Desktop clock for Windows. The new version of this blog is available on  https://perevoznyk.wordpress.com

Android: Get current date and time

This is a very common task in app development - get the current date and time value. In Android you can use 2 simple methods to achieve this: Method 1 Calendar c = Calendar.getInstance(); Date d = c.getTime(); Method 2 Time now = new Time(); now.setToNow();