Posts by Edwin Wachs • 146 points
1 post
-
3
votes2
answers3103
viewsA: Calendar in an Android app
You can open the calendar window as follows: Intent intent = new Intent(Intent.ACTION_INSERT); intent.setData(CalendarContract.Events.CONTENT_URI); startActivity(intent); If you need to add dates…