Here's the best solution I came up with to open for viewing the Android calendar:
Intent i = new Intent(Intent.ACTION_VIEW);
// Android 2.2+
i.setData(Uri.parse("content://com.android.calendar/time"));  
// Before Android 2.2+
//i.setData(Uri.parse("content://calendar/time"));  
startActivity(i);
2 comments:
ooh thanx Sagi's
i was looking for the same..
Thanks lot , It very helped me.
Post a Comment