I need to be able to choose date and time in my application It should either be done by using a dialog, or starting a new intent.
The way I have done it now, is that
You can query the current date through the Calendar class.
Calendar now = Calendar.getInstance(); now.get(Calendar.WHATDOYOUNEED);
Feed it's get() method with different parameters to customize your query.
get()