Я извлек список столбцов, используемых для хранения событий в календаре Android.
Вот список:
[0] «originalEvent» (id = 830007842672)
[1] «AvailabilityStatus» (id = 830007842752)
[2] "ownerAccount" (id = 830007842840)
[3] "_sync_account_type" (id = 830007842920)
[4] «видимость» (id = 830007843008)
[5] "rrule" (id = 830007843080)
[6] «lastDate» (id = 830007843144)
[7] "hasAlarm" (id = 830007843216)
[8] "guestCanModify" (id = 830007843288)
[9] "guestCanSeeGasts" (id = 830007843376)
[10] "exrule" (id = 830007843464)
[11] "rdate" (id = 830007843528)
[12] «прозрачность» (id = 830007843592)
[13] «часовой пояс» (id = 830007843672)
[14] «выбрано» (id = 830007843744)
[15] "dtstart" (id = 830007843816)
[16] "title" (id = 830007843888)
[17] "_sync_time" (id = 830007843952)
[18] "_id" (id = 830007844024)
[19] «hasAttendeeData» (id = 830007844088)
[20] "_sync_id" (id = 830007844176)
[21] "commentsUri" (id = 830007844248)
[22] «описание» (id = 830007844328)
[23] "htmlUri" (id = 830007844408)
[24] "_sync_account" (id = 830007844480)
[25] "_sync_version" (id = 830007844560)
[26] "hasExtendedProperties" (id = 830007844640)
[27] «calendar_id» (id = 830007844736)
Тогда, если я хочу получить новый идентификатор события для моего события:
public static long getNewEventId(ContentResolver cr, Uri cal_uri){
Uri local_uri = cal_uri;
if(cal_uri == null){
local_uri = Uri.parse(calendar_uri+"events");
}
Cursor cursor = cr.query(local_uri, new String [] {"MAX(_id) as max_id"}, null, null, "_id");
cursor.moveToFirst();
long max_val = cursor.getLong(cursor.getColumnIndex("max_id"));
return max_val+1;
}
И для события вставки:
public void insertDomainEntry(Date exp_date, String name, long event_id){
SQLiteDatabase db = getWritableDatabase();
ContentValues values = new ContentValues();
values.put("exp_date", exp_date.getTime()/1000);
values.put("event_id", event_id);
values.put("domainname", name);
db.insertOrThrow("domains_events", null, values);
}
Это решение, кажется, работает, даже если, вероятно, это не очень хорошее решение.
РЕДАКТИРОВАТЬ 02/2015
Цель getNextEventId - создать новую запись события для таблицы событий, здесь код с использованием этого метода:
@Override
public void onItemClick(AdapterView<?> adapter, View curview, int position,
long id) {
WhoisEntry entry = this.adapter.getItem(position);
long event_id = CalendarUtils.getNewEventId(getContentResolver(), null);
Toast.makeText(getApplicationContext(), "Domain: " + entry.getDomainName(),
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", entry.getExpiration().getTime());
intent.putExtra("_id", event_id);
intent.putExtra("allDay", false);
intent.putExtra("endTime", entry.getExpiration().getTime()+60*30);
intent.putExtra("title", "Expiration of " + entry.getDomainName());
startActivity(intent);
database.insertDomainEntry(entry.getExpiration(),
entry.getDomainName(), event_id);
}
Обновление 09/2015
В соответствии с просьбой в комментарии я добавляю, как получить URI календаря (это в основном место, где хранится календарь, и приложение пытается его угадать, выполняя поиск по всем известным возможным путям в календаре)
public static String getCalendarUriBase(Activity act) {
String calendarUriBase = null;
Uri calendars = Uri.parse("content://calendar/calendars");
Cursor managedCursor = null;
try {
managedCursor = act.getContentResolver().query(calendars,
null, null, null, null);
} catch (Exception e) {
}
if (managedCursor != null) {
calendarUriBase = "content://calendar/";
} else {
calendars = Uri.parse("content://com.android.calendar/calendars");
try {
managedCursor = act.getContentResolver().query(calendars,
null, null, null, null);
} catch (Exception e) {
}
if (managedCursor != null) {
calendarUriBase = "content://com.android.calendar/";
}
}
calendar_uri= calendarUriBase;
return calendarUriBase;
}