我在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月4日至2013年3月3日。如何使用selection
和selectionArgs[]
?
我试过这个
String selection = "((dtstart <= ?) AND (dtend >= ?))";
String[] selectionArgs = new String[] {startString, endString};
但它没有返回任何东西。我的怀疑是
1. where子句是否有效?因为,startDate和endDate首先转换为long(毫秒),然后转换为String,然后存储在表中。那么如何比较字符串的长值。 sqlite中没有toNumber()
函数。
2.如果我通过selectionArgs
,那么startString
和endString
应采用哪种格式?
答案 0 :(得分:8)
startString
&amp; 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()+"))";