0

是否可以通过 event_id 验证事件是否存在?如果事件仍然存在,我需要做一些事情。有可能验证吗?

4

1 回答 1

1

您需要使用日历提供程序进行查询

首先,您必须查询日历提供程序以获取要在其中搜索的日历的 ID,然后您可以为要定位的事件 ID 构建计数查询


在不打开 IDE 进行检查的情况下,我希望

Uri event = ContentUris.withAppendedId(Events.CONTENT_URI, eventID);
Cursor cursor = managedQuery(event, null, null, null);
If (cursor.getCount() == 1) {
  //the event exists?
}
于 2012-09-26T15:44:53.003 回答