8

我正在查询 android 中的事件表以获取事件。

String[] projection = new String[] { "calendar_id", "title", "description",
                    "dtstart", "dtend", "eventLocation" };

Cursor cursor = cr.query(Uri.parse("content://com.android.calendar/events"),
                    projection,
                    null,
                    null,
                    null);

这将返回所有事件。但现在我只想要特定持续时间的事件,比如 2013 年 4 月 3 日到 2013 年 7 月 3 日。如何使用selectionselectionArgs[]?我试过这个

String selection = "((dtstart <= ?) AND (dtend >= ?))";
String[] selectionArgs = new String[] {startString, endString};

但它没有返回任何东西。我的疑问是 1. where 子句会起作用吗?因为,startDate 和 endDate 先转换为 long(毫秒),然后转换为 String,然后存储在表中。那么如何比较字符串的长值。sqlite中没有toNumber()函数。2. 如果我通过了,selectionArgs那么应该采用哪种格式?startStringendString

4

1 回答 1

8

startString&endString应该以毫秒为单位传递。尝试使用:

Calendar c_start= Calendar.getInstance();
c_start.set(2013,2,4,0,0); //Note that months start from 0 (January)   
Calendar c_end= Calendar.getInstance();
c_end.set(2013,2,7,0,0); //Note that months start from 0 (January)

另外,我认为你的逻辑是相反的,日期范围应该是这样的:

String selection = "((dtstart >= "+c_start.getTimeInMillis()+") AND (dtend <= "+c_end.getTimeInMillis()+"))";
于 2013-03-18T14:02:24.270 回答