私の問題に対する答えを探していたのはかなり前のことです。私がしたいこと:当日のすべてのカレンダーからすべてのイベントを取得する
ICS以前のデバイス(2.2から3.2のAndroidバージョン)では問題なくそれを行うことができます。Android 4.0以降では、新しいカレンダーAPIの導入以来、かなりの成功を収めてきました。まあ、それは私が私のもの以外の他のデバイスでテストする前に私が思ったことです。私のコードが機能することもあれば、機能しないこともあります。一部のデバイスまたは他のデバイスでは繰り返しイベントが表示されず、すべてのイベントが表示されます(現在の日のイベントだけでなく)。
問題は1行のコードにあると思いますが、正しく行う方法が見つかりません:
cursor = contentResolver.query(CalendarContract.Events.CONTENT_URI, COLS, "("+CalendarContract.Events.DTSTART+">"+now+" and "+CalendarContract.Events.DTEND+"<"+endOfDay.getTimeInMillis()+") or (("+CalendarContract.Events.ALL_DAY+"=1) and "+"("+CalendarContract.Events.DTSTART+">="+timeAllDay.getTimeInMillis()+") and "+"("+CalendarContract.Events.DTEND+"<="+endTimeAllDay.getTimeInMillis()+"))", null, null);
上記の行で作成したすべてのクラスは次のとおりです。
public class ICSCalendar extends AsyncTask<Intent, String, Intent>
{
private static final String[] COLS = new String[] {CalendarContract.Events.TITLE, CalendarContract.Events.DTSTART, CalendarContract.Events.DTEND, CalendarContract.Events.ALL_DAY};
@Override
protected Intent doInBackground(Intent... params)
{
ContentResolver contentResolver = Alert.mContext.getContentResolver();
Cursor cursor = null;
try
{
long now = new Date().getTime();
Calendar endOfDay = Calendar.getInstance();
endOfDay.set(Calendar.HOUR_OF_DAY, 23);
endOfDay.set(Calendar.MINUTE, 59);
endOfDay.set(Calendar.SECOND, 59);
Calendar timeAllDay = Calendar.getInstance();
timeAllDay.set(Calendar.HOUR_OF_DAY, 0);
timeAllDay.set(Calendar.MINUTE, 0);
timeAllDay.set(Calendar.SECOND, 0);
Calendar endTimeAllDay = Calendar.getInstance();
endTimeAllDay.add(Calendar.DAY_OF_MONTH, 1);
endTimeAllDay.set(Calendar.HOUR_OF_DAY, 2);
endTimeAllDay.set(Calendar.MINUTE, 0);
endTimeAllDay.set(Calendar.SECOND, 1);
cursor = contentResolver.query(CalendarContract.Events.CONTENT_URI, COLS, "("+CalendarContract.Events.DTSTART+">"+now+" and "+CalendarContract.Events.DTEND+"<"+endOfDay.getTimeInMillis()+") or (("+CalendarContract.Events.ALL_DAY+"=1) and "+"("+CalendarContract.Events.DTSTART+">="+timeAllDay.getTimeInMillis()+") and "+"("+CalendarContract.Events.DTEND+"<="+endTimeAllDay.getTimeInMillis()+"))", null, null);
Intent calendarData = new Intent(Alerts.CALENDAR_UI_DATA);
int nb_events = 0;
while(cursor.moveToNext())
{
nb_events++;
final String title = cursor.getString(0);
final Date begin = new Date(cursor.getLong(1));
final Boolean allDay = !cursor.getString(3).equals("0");
calendarData.putExtra("event_"+nb_events, (String) title);
calendarData.putExtra("all_day_event_"+nb_events, (Boolean) allDay);
Calendar beginEvent = Calendar.getInstance();
beginEvent.setTimeInMillis(cursor.getLong(1));
String format = Alerts.get24HourMode(Alert.mContext) ? "kk:mm": "h:mm";
CharSequence newTime = DateFormat.format(format, beginEvent);
if(format == "h:mm")
{
if((beginEvent.get(Calendar.AM_PM) == 0))
{
newTime = newTime + " A.M";
}
else
{
newTime = newTime + " P.M";
}
}
if(!allDay)
{
calendarData.putExtra("date_event_"+nb_events, newTime);
}
else
{
calendarData.putExtra("date_event_"+nb_events, Alert.mContext.getString(R.string.tts_whole_day_calendar_event));
}
}
calendarData.putExtra("nb_events", nb_events);
return calendarData;
}
catch(Exception e)
{
Log.d("DEBUG", ""+e);
return null;
}
}
@Override
protected void onPostExecute(Intent result)
{
// TODO Auto-generated method stub
super.onPostExecute(result);
try
{
Alert.mContext.sendBroadcast(result);
}
catch(NullPointerException e){}
}
@Override
protected void onPreExecute()
{
// TODO Auto-generated method stub
super.onPreExecute();
}
@Override
protected void onProgressUpdate(String... values)
{
// TODO Auto-generated method stub
super.onProgressUpdate(values);
}
}
Android 4.0以降の当日のすべてのカレンダーからすべてのイベントを取得する方法を知っている人はいますか?助けてくれてありがとう:)