1) Can you reset your calendar and post the result?
Note:
Android <API Lvl 14 you must set selected = 1
Android> Lvl API 14 you must set visibility = 1 (the selected one is no longer available)
Dump:
cursor = contentResolver.query(Uri.parse(CALENDAR_URI),null, null, null,null); while (cursor.moveToNext()) { for (int i = 0; i < cursor.getColumnCount(); i++) { Log.e("XXX", cursor.getColumnName(i) + ": " + cursor.getString(i)); } }
CALENDAR_URI = content: //com.android.calendar/calendars (starting with Froyo) or content: // calendar / (before Froyo)
2) fooobar.com/questions/913274 / ...
source share