We are trying to show user the Ice cream Sandwich calendar view, when they want to add a new event. We can only test this in emulator.
The other problem is that we c
I used the following code to read all the events in Calendar.
public boolean isEventInCal(Context context, String cal_meeting_id) {
Cursor cursor = context.getContentResolver().query(
Uri.parse("content://com.android.calendar/events"),
new String[] { "_id" }, " _id = ? ",
new String[] { cal_meeting_id }, null);
if (cursor.moveToFirst()) {
// will give all events
return true;
}
return false;
}