I'm building an app in which I need a calendar so the user can pick a date.
I'm trying to embed the Caldroid library in my project and I want to show the calendar not in a new Activity
, but in a Dialog
instead.
My questions are:
- Since I'm using an
Activity
which already has some widgets, do I need to change it toFragmentActivity
? - I want to show the Caldroid
Dialog
by pressing a calendarImageButton
, do I need a secondFragmentActivity
?