I\'m launching an activity and would like to pass a Date(Time) value to it. I\'ve passed all my other parameters with i.putExtra(\"noteName\", \"Hello Wor
Date(Time)
i.putExtra(\"noteName\", \"Hello Wor
Use date.getTime() and date.setTime() and transfer it as a Long.
date.getTime()
date.setTime()
i.putExtra("date", date.getTime()); Date d = new Date(); d.setTime(i.getLongExtra("date", -1));