Posts

Showing posts with the label Mobile

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();