从日历中的实例获取搜索结果

时间:2014-02-25 14:11:55

标签: android google-calendar-api

我需要获取具有给定字符串的事件。例如:我需要在三天内获取包含“test”一词的所有事件。如果我在下面运行,它会显示三天的所有事件。

long begin = Calendar.getInstance().getTimeInMillis();
long end =  begin + (86000000*3);
System.out.println("01 - begin: " +begin+" end "+end);
String[] proj = new String[]{Instances._ID, 
                Instances.TITLE,
                Instances.EVENT_LOCATION,
                Instances.BEGIN, 
                Instances.END, 
                Instances.END, 
                Instances.EVENT_ID};
Cursor cursor =  Instances.query(context.getContentResolver(), proj, begin, end);

当我尝试以下查询时,它给出了res

Cursor cursor = Instances.query(context.getContentResolver(), proj, begin, end,"test");

我不知道我犯了哪个错误。

提前致谢。

0 个答案:

没有答案