我正在使用以下代码来获取所有日历并获取每个日历中的第一个事件。
但是当我执行查询时它失败了。
我正在使用以下 URI:
Uri.Builder builder = Uri.parse("content://com.android.calendar/instances/when").buildUpon();
我已经检查并获得了正确的日历 ID 列表,这是查询代码:
Cursor eventCursor = null;
// Create an event cursor to find all events in the calendar
try {
eventCursor = contentResolver.query(builder.new String[] { "title", "begin", "end", "allDay"}, "Calendars._id=" + 1, null, "startDay ASC, startMinute ASC");
Log.d(TAG,"Got Calendar ID = "+id);
} catch (Exception e) {
Log.d(TAG, "Didn't find calender for ID="+id);
eventCursor = null;
}
我从 SQL 中得到以下错误:illegalargumentexception invalid column begin
我用谷歌搜索了这个错误,但什么也没找到,另外,我看到所有此类查询都使用这个确切的列并获得成功。